automation-lib 5.4.7 → 5.4.9
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 +365 -31
- package/dist/index.d.ts +365 -31
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -9338,6 +9338,21 @@ interface IInstagramReportInteractBlockUser extends IBaseModel, ITrackingTimeScr
|
|
|
9338
9338
|
listUserBlock: string[];
|
|
9339
9339
|
listUserRestrict: string[];
|
|
9340
9340
|
listUserHidden: string[];
|
|
9341
|
+
timeStart: Date;
|
|
9342
|
+
timeEnd: Date;
|
|
9343
|
+
status: EStatusTaskScript;
|
|
9344
|
+
noteFix: string;
|
|
9345
|
+
}
|
|
9346
|
+
interface IInstagramReportInteractBlockUserELS extends IBaseELS {
|
|
9347
|
+
account: {
|
|
9348
|
+
id: string;
|
|
9349
|
+
name: string;
|
|
9350
|
+
};
|
|
9351
|
+
listUserBlock: string[];
|
|
9352
|
+
listUserRestrict: string[];
|
|
9353
|
+
listUserHidden: string[];
|
|
9354
|
+
timeStart: Date;
|
|
9355
|
+
timeEnd: Date;
|
|
9341
9356
|
status: EStatusTaskScript;
|
|
9342
9357
|
noteFix: string;
|
|
9343
9358
|
}
|
|
@@ -9348,8 +9363,23 @@ interface IInstagramReportInteractExplore extends IBaseModel, ITrackingTimeScrip
|
|
|
9348
9363
|
numberLike: number;
|
|
9349
9364
|
minutesExecute: number;
|
|
9350
9365
|
isLike: boolean;
|
|
9366
|
+
timeStart: Date;
|
|
9367
|
+
timeEnd: Date;
|
|
9368
|
+
status: EStatusTaskScript;
|
|
9369
|
+
noteFix: string;
|
|
9370
|
+
}
|
|
9371
|
+
interface IInstagramReportInteractExploreELS extends IBaseELS {
|
|
9372
|
+
account: {
|
|
9373
|
+
id: string;
|
|
9374
|
+
name: string;
|
|
9375
|
+
};
|
|
9376
|
+
typeView: string;
|
|
9377
|
+
numberLike: number;
|
|
9378
|
+
minutesExecute: number;
|
|
9379
|
+
isLike: boolean;
|
|
9380
|
+
timeStart: Date;
|
|
9381
|
+
timeEnd: Date;
|
|
9351
9382
|
status: EStatusTaskScript;
|
|
9352
|
-
statusDetail: string;
|
|
9353
9383
|
noteFix: string;
|
|
9354
9384
|
}
|
|
9355
9385
|
|
|
@@ -9357,7 +9387,21 @@ interface IInstagramReportInteractFollow extends IBaseModel, ITrackingTimeScript
|
|
|
9357
9387
|
sheetName: string;
|
|
9358
9388
|
sheetUrl: string;
|
|
9359
9389
|
account: IInstagramAccountRun | string;
|
|
9360
|
-
|
|
9390
|
+
listUsersFollow: Array<string>;
|
|
9391
|
+
follower: number;
|
|
9392
|
+
following: number;
|
|
9393
|
+
timeStart: Date;
|
|
9394
|
+
timeEnd: Date;
|
|
9395
|
+
status: EStatusTaskScript;
|
|
9396
|
+
noteFix: string;
|
|
9397
|
+
}
|
|
9398
|
+
interface IInstagramReportInteractFollowELS extends IBaseELS {
|
|
9399
|
+
account: {
|
|
9400
|
+
id: string;
|
|
9401
|
+
name: string;
|
|
9402
|
+
};
|
|
9403
|
+
sheetName: string;
|
|
9404
|
+
sheetUrl: string;
|
|
9361
9405
|
listUsersFollow: Array<string>;
|
|
9362
9406
|
follower: number;
|
|
9363
9407
|
following: number;
|
|
@@ -9372,31 +9416,77 @@ interface IInstagramReportInteractReel extends IBaseModel, ITrackingTimeScript,
|
|
|
9372
9416
|
numberLike: number;
|
|
9373
9417
|
minutesExecute: number;
|
|
9374
9418
|
isLike: boolean;
|
|
9419
|
+
timeStart: Date;
|
|
9420
|
+
timeEnd: Date;
|
|
9421
|
+
status: EStatusTaskScript;
|
|
9422
|
+
noteFix: string;
|
|
9423
|
+
}
|
|
9424
|
+
interface IInstagramReportInteractReelELS extends IBaseELS {
|
|
9425
|
+
account: {
|
|
9426
|
+
id: string;
|
|
9427
|
+
name: string;
|
|
9428
|
+
};
|
|
9429
|
+
numberLike: number;
|
|
9430
|
+
minutesExecute: number;
|
|
9431
|
+
isLike: boolean;
|
|
9432
|
+
timeStart: Date;
|
|
9433
|
+
timeEnd: Date;
|
|
9375
9434
|
status: EStatusTaskScript;
|
|
9376
|
-
statusDetail: string;
|
|
9377
9435
|
noteFix: string;
|
|
9378
9436
|
}
|
|
9379
9437
|
|
|
9380
9438
|
interface IInstagramReportInteractReplyComment extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
9439
|
+
account: IInstagramAccountRun | string;
|
|
9440
|
+
sheetName: string;
|
|
9441
|
+
sheetUrl: string;
|
|
9442
|
+
content: string;
|
|
9443
|
+
userLink: string;
|
|
9444
|
+
linkPost: string;
|
|
9445
|
+
commentReplied: string;
|
|
9446
|
+
timeStart: Date;
|
|
9447
|
+
timeEnd: Date;
|
|
9448
|
+
status: EStatusTaskScript;
|
|
9449
|
+
noteFix: string;
|
|
9450
|
+
}
|
|
9451
|
+
interface IInstagramReportInteractReplyCommentELS extends IBaseELS {
|
|
9452
|
+
account: {
|
|
9453
|
+
id: string;
|
|
9454
|
+
name: string;
|
|
9455
|
+
};
|
|
9381
9456
|
sheetName: string;
|
|
9382
9457
|
sheetUrl: string;
|
|
9383
|
-
account: IInstagramAccountRun | string;
|
|
9384
9458
|
content: string;
|
|
9385
9459
|
userLink: string;
|
|
9386
9460
|
linkPost: string;
|
|
9387
9461
|
commentReplied: string;
|
|
9462
|
+
timeStart: Date;
|
|
9463
|
+
timeEnd: Date;
|
|
9388
9464
|
status: EStatusTaskScript;
|
|
9389
|
-
statusDetail: string;
|
|
9390
9465
|
noteFix: string;
|
|
9391
9466
|
}
|
|
9392
9467
|
|
|
9393
9468
|
interface IInstagramReportInteractReplyMessage extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
9469
|
+
account: IInstagramAccountRun | string;
|
|
9470
|
+
sheetName: string;
|
|
9471
|
+
sheetUrl: string;
|
|
9472
|
+
receiverName: string;
|
|
9473
|
+
messageReply: string;
|
|
9474
|
+
timeStart: Date;
|
|
9475
|
+
timeEnd: Date;
|
|
9476
|
+
status: EStatusTaskScript;
|
|
9477
|
+
noteFix: string;
|
|
9478
|
+
}
|
|
9479
|
+
interface IInstagramReportInteractReplyMessageELS extends IBaseELS {
|
|
9480
|
+
account: {
|
|
9481
|
+
id: string;
|
|
9482
|
+
name: string;
|
|
9483
|
+
};
|
|
9394
9484
|
sheetName: string;
|
|
9395
9485
|
sheetUrl: string;
|
|
9396
|
-
account: IInstagramAccountRun | string;
|
|
9397
|
-
statusDetail: string;
|
|
9398
9486
|
receiverName: string;
|
|
9399
9487
|
messageReply: string;
|
|
9488
|
+
timeStart: Date;
|
|
9489
|
+
timeEnd: Date;
|
|
9400
9490
|
status: EStatusTaskScript;
|
|
9401
9491
|
noteFix: string;
|
|
9402
9492
|
}
|
|
@@ -9408,16 +9498,46 @@ interface IInstagramReportInteractStory extends IBaseModel, ITrackingTimeScript,
|
|
|
9408
9498
|
numberUsersSentMess: number;
|
|
9409
9499
|
isLike: boolean;
|
|
9410
9500
|
isSentMessage: boolean;
|
|
9411
|
-
|
|
9501
|
+
timeStart: Date;
|
|
9502
|
+
timeEnd: Date;
|
|
9503
|
+
status: EStatusTaskScript;
|
|
9504
|
+
noteFix: string;
|
|
9505
|
+
}
|
|
9506
|
+
interface IInstagramReportInteractStoryELS extends IBaseELS {
|
|
9507
|
+
account: {
|
|
9508
|
+
id: string;
|
|
9509
|
+
name: string;
|
|
9510
|
+
};
|
|
9511
|
+
numberLike: number;
|
|
9512
|
+
minutesExecute: number;
|
|
9513
|
+
numberUsersSentMess: number;
|
|
9514
|
+
isLike: boolean;
|
|
9515
|
+
isSentMessage: boolean;
|
|
9516
|
+
timeStart: Date;
|
|
9517
|
+
timeEnd: Date;
|
|
9412
9518
|
status: EStatusTaskScript;
|
|
9413
9519
|
noteFix: string;
|
|
9414
9520
|
}
|
|
9415
9521
|
|
|
9416
9522
|
interface IInstagramReportInteractUnFollow extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
9523
|
+
account: IInstagramAccountRun | string;
|
|
9524
|
+
sheetName: string;
|
|
9525
|
+
sheetUrl: string;
|
|
9526
|
+
listUsersUnFollow: Array<string>;
|
|
9527
|
+
follower: number;
|
|
9528
|
+
following: number;
|
|
9529
|
+
timeStart: Date;
|
|
9530
|
+
timeEnd: Date;
|
|
9531
|
+
status: EStatusTaskScript;
|
|
9532
|
+
noteFix: string;
|
|
9533
|
+
}
|
|
9534
|
+
interface IInstagramReportInteractUnFollowELS extends IBaseELS {
|
|
9535
|
+
account: {
|
|
9536
|
+
id: string;
|
|
9537
|
+
name: string;
|
|
9538
|
+
};
|
|
9417
9539
|
sheetName: string;
|
|
9418
9540
|
sheetUrl: string;
|
|
9419
|
-
account: IInstagramAccountRun | string;
|
|
9420
|
-
statusDetail: string;
|
|
9421
9541
|
listUsersUnFollow: Array<string>;
|
|
9422
9542
|
follower: number;
|
|
9423
9543
|
following: number;
|
|
@@ -9428,21 +9548,37 @@ interface IInstagramReportInteractUnFollow extends IBaseModel, ITrackingTimeScri
|
|
|
9428
9548
|
}
|
|
9429
9549
|
|
|
9430
9550
|
interface IInstagramReportPostHighLight extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
9551
|
+
account: string | IInstagramAccountRun;
|
|
9552
|
+
sheetUrl: string;
|
|
9553
|
+
sheetName: string;
|
|
9554
|
+
sheetPageName: string;
|
|
9555
|
+
rowId: string;
|
|
9556
|
+
historyName: string;
|
|
9557
|
+
timeStart: Date;
|
|
9558
|
+
timeEnd: Date;
|
|
9559
|
+
status: EStatusTaskScript;
|
|
9560
|
+
noteFix: string;
|
|
9561
|
+
}
|
|
9562
|
+
interface IInstagramReportPostHighLightELS extends IBaseELS {
|
|
9563
|
+
account: {
|
|
9564
|
+
id: string;
|
|
9565
|
+
name: string;
|
|
9566
|
+
};
|
|
9431
9567
|
sheetUrl: string;
|
|
9432
9568
|
sheetName: string;
|
|
9433
|
-
account: string | IInstagramAccountRun;
|
|
9434
9569
|
sheetPageName: string;
|
|
9435
9570
|
rowId: string;
|
|
9436
9571
|
historyName: string;
|
|
9572
|
+
timeStart: Date;
|
|
9573
|
+
timeEnd: Date;
|
|
9437
9574
|
status: EStatusTaskScript;
|
|
9438
|
-
statusDetail: string;
|
|
9439
9575
|
noteFix: string;
|
|
9440
9576
|
}
|
|
9441
9577
|
|
|
9442
9578
|
interface IInstagramReportPostNew extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
9579
|
+
account: string | IInstagramAccountRun;
|
|
9443
9580
|
sheetUrl: string;
|
|
9444
9581
|
sheetName: string;
|
|
9445
|
-
account: string | IInstagramAccountRun;
|
|
9446
9582
|
sheetPageName: string;
|
|
9447
9583
|
rowId: string;
|
|
9448
9584
|
otherAccount: string;
|
|
@@ -9454,15 +9590,39 @@ interface IInstagramReportPostNew extends IBaseModel, ITrackingTimeScript, ITrac
|
|
|
9454
9590
|
tagUser: string;
|
|
9455
9591
|
location: string;
|
|
9456
9592
|
url: string;
|
|
9593
|
+
timeStart: Date;
|
|
9594
|
+
timeEnd: Date;
|
|
9595
|
+
status: EStatusTaskScript;
|
|
9596
|
+
noteFix: string;
|
|
9597
|
+
}
|
|
9598
|
+
interface IInstagramReportPostNewELS extends IBaseELS {
|
|
9599
|
+
account: {
|
|
9600
|
+
id: string;
|
|
9601
|
+
name: string;
|
|
9602
|
+
};
|
|
9603
|
+
sheetUrl: string;
|
|
9604
|
+
sheetName: string;
|
|
9605
|
+
sheetPageName: string;
|
|
9606
|
+
rowId: string;
|
|
9607
|
+
otherAccount: string;
|
|
9608
|
+
photosUrl: string[];
|
|
9609
|
+
videosUrl: string[];
|
|
9610
|
+
collaborator: string;
|
|
9611
|
+
content: string;
|
|
9612
|
+
music: string;
|
|
9613
|
+
tagUser: string;
|
|
9614
|
+
location: string;
|
|
9615
|
+
url: string;
|
|
9616
|
+
timeStart: Date;
|
|
9617
|
+
timeEnd: Date;
|
|
9457
9618
|
status: EStatusTaskScript;
|
|
9458
|
-
statusDetail: string;
|
|
9459
9619
|
noteFix: string;
|
|
9460
9620
|
}
|
|
9461
9621
|
|
|
9462
9622
|
interface IInstagramReportPostSquare extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
9623
|
+
account: string | IInstagramAccountRun;
|
|
9463
9624
|
sheetUrl: string;
|
|
9464
9625
|
sheetName: string;
|
|
9465
|
-
account: string | IInstagramAccountRun;
|
|
9466
9626
|
sheetPageName: string;
|
|
9467
9627
|
rowId: string;
|
|
9468
9628
|
otherAccount: string;
|
|
@@ -9474,15 +9634,39 @@ interface IInstagramReportPostSquare extends IBaseModel, ITrackingTimeScript, IT
|
|
|
9474
9634
|
tagUser: string;
|
|
9475
9635
|
location: string;
|
|
9476
9636
|
url: string;
|
|
9637
|
+
timeStart: Date;
|
|
9638
|
+
timeEnd: Date;
|
|
9639
|
+
status: EStatusTaskScript;
|
|
9640
|
+
noteFix: string;
|
|
9641
|
+
}
|
|
9642
|
+
interface IInstagramReportPostSquareELS extends IBaseELS {
|
|
9643
|
+
account: {
|
|
9644
|
+
id: string;
|
|
9645
|
+
name: string;
|
|
9646
|
+
};
|
|
9647
|
+
sheetUrl: string;
|
|
9648
|
+
sheetName: string;
|
|
9649
|
+
sheetPageName: string;
|
|
9650
|
+
rowId: string;
|
|
9651
|
+
otherAccount: string;
|
|
9652
|
+
photosUrl: string[];
|
|
9653
|
+
videosUrl: string[];
|
|
9654
|
+
collaborator: string;
|
|
9655
|
+
content: string;
|
|
9656
|
+
music: string;
|
|
9657
|
+
tagUser: string;
|
|
9658
|
+
location: string;
|
|
9659
|
+
url: string;
|
|
9660
|
+
timeStart: Date;
|
|
9661
|
+
timeEnd: Date;
|
|
9477
9662
|
status: EStatusTaskScript;
|
|
9478
|
-
statusDetail: string;
|
|
9479
9663
|
noteFix: string;
|
|
9480
9664
|
}
|
|
9481
9665
|
|
|
9482
9666
|
interface IInstagramReportPostReel extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
9667
|
+
account: string | IInstagramAccountRun;
|
|
9483
9668
|
sheetUrl: string;
|
|
9484
9669
|
sheetName: string;
|
|
9485
|
-
account: string | IInstagramAccountRun;
|
|
9486
9670
|
sheetPageName: string;
|
|
9487
9671
|
rowId: string;
|
|
9488
9672
|
otherAccount: string;
|
|
@@ -9496,15 +9680,41 @@ interface IInstagramReportPostReel extends IBaseModel, ITrackingTimeScript, ITra
|
|
|
9496
9680
|
collaborator: string;
|
|
9497
9681
|
tagUser: string;
|
|
9498
9682
|
url: string;
|
|
9683
|
+
timeStart: Date;
|
|
9684
|
+
timeEnd: Date;
|
|
9685
|
+
status: EStatusTaskScript;
|
|
9686
|
+
noteFix: string;
|
|
9687
|
+
}
|
|
9688
|
+
interface IInstagramReportPostReelELS extends IBaseELS {
|
|
9689
|
+
account: {
|
|
9690
|
+
id: string;
|
|
9691
|
+
name: string;
|
|
9692
|
+
};
|
|
9693
|
+
sheetUrl: string;
|
|
9694
|
+
sheetName: string;
|
|
9695
|
+
sheetPageName: string;
|
|
9696
|
+
rowId: string;
|
|
9697
|
+
otherAccount: string;
|
|
9698
|
+
photosUrl: string[];
|
|
9699
|
+
videosUrl: string[];
|
|
9700
|
+
titlePoll: string;
|
|
9701
|
+
polls: string[];
|
|
9702
|
+
location: string;
|
|
9703
|
+
music: string;
|
|
9704
|
+
content: string;
|
|
9705
|
+
collaborator: string;
|
|
9706
|
+
tagUser: string;
|
|
9707
|
+
url: string;
|
|
9708
|
+
timeStart: Date;
|
|
9709
|
+
timeEnd: Date;
|
|
9499
9710
|
status: EStatusTaskScript;
|
|
9500
|
-
statusDetail: string;
|
|
9501
9711
|
noteFix: string;
|
|
9502
9712
|
}
|
|
9503
9713
|
|
|
9504
9714
|
interface IInstagramReportPostStory extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
9715
|
+
account: string | IInstagramAccountRun;
|
|
9505
9716
|
sheetUrl: string;
|
|
9506
9717
|
sheetName: string;
|
|
9507
|
-
account: string | IInstagramAccountRun;
|
|
9508
9718
|
sheetPageName: string;
|
|
9509
9719
|
rowId: string;
|
|
9510
9720
|
otherAccount: string;
|
|
@@ -9512,8 +9722,28 @@ interface IInstagramReportPostStory extends IBaseModel, ITrackingTimeScript, ITr
|
|
|
9512
9722
|
videosUrl: string[];
|
|
9513
9723
|
music: string;
|
|
9514
9724
|
location: string;
|
|
9725
|
+
timeStart: Date;
|
|
9726
|
+
timeEnd: Date;
|
|
9727
|
+
status: EStatusTaskScript;
|
|
9728
|
+
noteFix: string;
|
|
9729
|
+
}
|
|
9730
|
+
interface IInstagramReportPostStoryELS extends IBaseELS {
|
|
9731
|
+
account: {
|
|
9732
|
+
id: string;
|
|
9733
|
+
name: string;
|
|
9734
|
+
};
|
|
9735
|
+
sheetUrl: string;
|
|
9736
|
+
sheetName: string;
|
|
9737
|
+
sheetPageName: string;
|
|
9738
|
+
rowId: string;
|
|
9739
|
+
otherAccount: string;
|
|
9740
|
+
photosUrl: string[];
|
|
9741
|
+
videosUrl: string[];
|
|
9742
|
+
music: string;
|
|
9743
|
+
location: string;
|
|
9744
|
+
timeStart: Date;
|
|
9745
|
+
timeEnd: Date;
|
|
9515
9746
|
status: EStatusTaskScript;
|
|
9516
|
-
statusDetail: string;
|
|
9517
9747
|
noteFix: string;
|
|
9518
9748
|
}
|
|
9519
9749
|
|
|
@@ -10257,9 +10487,9 @@ interface IThreadsHistoryAutoPostELS extends IBaseELS {
|
|
|
10257
10487
|
}
|
|
10258
10488
|
|
|
10259
10489
|
interface IThreadsReportPost extends IBaseModel, ITrackingModel<IUser> {
|
|
10490
|
+
account: IThreadsAccountRun | string;
|
|
10260
10491
|
sheetName: string;
|
|
10261
10492
|
sheetUrl: string;
|
|
10262
|
-
account: IThreadsAccountRun | string;
|
|
10263
10493
|
url: string;
|
|
10264
10494
|
photosUrl: string[];
|
|
10265
10495
|
videosUrl: string[];
|
|
@@ -10271,45 +10501,115 @@ interface IThreadsReportPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
10271
10501
|
altNicheImages: string[];
|
|
10272
10502
|
altImages: string[];
|
|
10273
10503
|
altVideos: string[];
|
|
10504
|
+
timeStart: Date;
|
|
10505
|
+
timeEnd: Date;
|
|
10274
10506
|
status: EStatusTaskScript;
|
|
10275
|
-
|
|
10507
|
+
noteFix: string;
|
|
10508
|
+
}
|
|
10509
|
+
interface IThreadsReportPostELS extends IBaseELS {
|
|
10510
|
+
account: {
|
|
10511
|
+
id: string;
|
|
10512
|
+
name: string;
|
|
10513
|
+
};
|
|
10514
|
+
sheetName: string;
|
|
10515
|
+
sheetUrl: string;
|
|
10516
|
+
url: string;
|
|
10517
|
+
photosUrl: string[];
|
|
10518
|
+
videosUrl: string[];
|
|
10519
|
+
titleContent: string;
|
|
10520
|
+
tagUsers: string[];
|
|
10521
|
+
content: string;
|
|
10522
|
+
caption: string;
|
|
10523
|
+
hashtag: string;
|
|
10524
|
+
altNicheImages: string[];
|
|
10525
|
+
altImages: string[];
|
|
10526
|
+
altVideos: string[];
|
|
10276
10527
|
timeStart: Date;
|
|
10277
10528
|
timeEnd: Date;
|
|
10529
|
+
status: EStatusTaskScript;
|
|
10530
|
+
noteFix: string;
|
|
10278
10531
|
}
|
|
10279
10532
|
|
|
10280
10533
|
interface IThreadsReportInteractFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
10534
|
+
account: IThreadsAccountRun | string;
|
|
10281
10535
|
sheetName: string;
|
|
10282
10536
|
sheetUrl: string;
|
|
10283
|
-
account: IThreadsAccountRun | string;
|
|
10284
10537
|
follower: number;
|
|
10285
10538
|
following: number;
|
|
10539
|
+
listUsersFollow: Array<string>;
|
|
10540
|
+
timeStart: Date;
|
|
10541
|
+
timeEnd: Date;
|
|
10286
10542
|
status: EStatusTaskScript;
|
|
10287
|
-
|
|
10543
|
+
noteFix: string;
|
|
10544
|
+
}
|
|
10545
|
+
interface IThreadsReportInteractFollowELS extends IBaseELS {
|
|
10546
|
+
account: {
|
|
10547
|
+
id: string;
|
|
10548
|
+
name: string;
|
|
10549
|
+
};
|
|
10550
|
+
sheetName: string;
|
|
10551
|
+
sheetUrl: string;
|
|
10552
|
+
follower: number;
|
|
10553
|
+
following: number;
|
|
10554
|
+
listUsersFollow: Array<string>;
|
|
10288
10555
|
timeStart: Date;
|
|
10289
10556
|
timeEnd: Date;
|
|
10557
|
+
status: EStatusTaskScript;
|
|
10558
|
+
noteFix: string;
|
|
10290
10559
|
}
|
|
10291
10560
|
|
|
10292
10561
|
interface IThreadsReportInteractReplyMessage extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
10562
|
+
account: IThreadsAccountRun | string;
|
|
10293
10563
|
sheetName: string;
|
|
10294
10564
|
sheetUrl: string;
|
|
10295
|
-
|
|
10565
|
+
receiverName: string;
|
|
10566
|
+
messageReply: string;
|
|
10567
|
+
timeStart: Date;
|
|
10568
|
+
timeEnd: Date;
|
|
10296
10569
|
status: EStatusTaskScript;
|
|
10297
|
-
|
|
10570
|
+
noteFix: string;
|
|
10571
|
+
}
|
|
10572
|
+
interface IThreadsReportInteractReplyMessageELS extends IBaseELS {
|
|
10573
|
+
account: {
|
|
10574
|
+
id: string;
|
|
10575
|
+
name: string;
|
|
10576
|
+
};
|
|
10577
|
+
sheetName: string;
|
|
10578
|
+
sheetUrl: string;
|
|
10298
10579
|
receiverName: string;
|
|
10299
10580
|
messageReply: string;
|
|
10581
|
+
timeStart: Date;
|
|
10582
|
+
timeEnd: Date;
|
|
10583
|
+
status: EStatusTaskScript;
|
|
10584
|
+
noteFix: string;
|
|
10300
10585
|
}
|
|
10301
10586
|
|
|
10302
10587
|
interface IThreadsReportInteractReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
10588
|
+
account: IThreadsAccountRun | string;
|
|
10303
10589
|
sheetName: string;
|
|
10304
10590
|
sheetUrl: string;
|
|
10305
|
-
account: IThreadsAccountRun | string;
|
|
10306
10591
|
content: string;
|
|
10307
10592
|
linkPost: string;
|
|
10308
10593
|
userLink: string;
|
|
10594
|
+
timeStart: Date;
|
|
10595
|
+
timeEnd: Date;
|
|
10309
10596
|
status: EStatusTaskScript;
|
|
10310
|
-
|
|
10597
|
+
noteFix: string;
|
|
10598
|
+
}
|
|
10599
|
+
interface IThreadsReportInteractReplyCommentELS extends IBaseELS {
|
|
10600
|
+
account: {
|
|
10601
|
+
id: string;
|
|
10602
|
+
name: string;
|
|
10603
|
+
};
|
|
10604
|
+
sheetName: string;
|
|
10605
|
+
sheetUrl: string;
|
|
10606
|
+
content: string;
|
|
10607
|
+
linkPost: string;
|
|
10608
|
+
userLink: string;
|
|
10311
10609
|
timeStart: Date;
|
|
10312
10610
|
timeEnd: Date;
|
|
10611
|
+
status: EStatusTaskScript;
|
|
10612
|
+
noteFix: string;
|
|
10313
10613
|
}
|
|
10314
10614
|
|
|
10315
10615
|
interface IThreadsSettingPost extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -10566,18 +10866,31 @@ type index$5_IInstagramHistoryFollowELS = IInstagramHistoryFollowELS;
|
|
|
10566
10866
|
type index$5_IInstagramHistoryGroup = IInstagramHistoryGroup;
|
|
10567
10867
|
type index$5_IInstagramHistoryGroupELS = IInstagramHistoryGroupELS;
|
|
10568
10868
|
type index$5_IInstagramReportInteractBlockUser = IInstagramReportInteractBlockUser;
|
|
10869
|
+
type index$5_IInstagramReportInteractBlockUserELS = IInstagramReportInteractBlockUserELS;
|
|
10569
10870
|
type index$5_IInstagramReportInteractExplore = IInstagramReportInteractExplore;
|
|
10871
|
+
type index$5_IInstagramReportInteractExploreELS = IInstagramReportInteractExploreELS;
|
|
10570
10872
|
type index$5_IInstagramReportInteractFollow = IInstagramReportInteractFollow;
|
|
10873
|
+
type index$5_IInstagramReportInteractFollowELS = IInstagramReportInteractFollowELS;
|
|
10571
10874
|
type index$5_IInstagramReportInteractReel = IInstagramReportInteractReel;
|
|
10875
|
+
type index$5_IInstagramReportInteractReelELS = IInstagramReportInteractReelELS;
|
|
10572
10876
|
type index$5_IInstagramReportInteractReplyComment = IInstagramReportInteractReplyComment;
|
|
10877
|
+
type index$5_IInstagramReportInteractReplyCommentELS = IInstagramReportInteractReplyCommentELS;
|
|
10573
10878
|
type index$5_IInstagramReportInteractReplyMessage = IInstagramReportInteractReplyMessage;
|
|
10879
|
+
type index$5_IInstagramReportInteractReplyMessageELS = IInstagramReportInteractReplyMessageELS;
|
|
10574
10880
|
type index$5_IInstagramReportInteractStory = IInstagramReportInteractStory;
|
|
10881
|
+
type index$5_IInstagramReportInteractStoryELS = IInstagramReportInteractStoryELS;
|
|
10575
10882
|
type index$5_IInstagramReportInteractUnFollow = IInstagramReportInteractUnFollow;
|
|
10883
|
+
type index$5_IInstagramReportInteractUnFollowELS = IInstagramReportInteractUnFollowELS;
|
|
10576
10884
|
type index$5_IInstagramReportPostHighLight = IInstagramReportPostHighLight;
|
|
10885
|
+
type index$5_IInstagramReportPostHighLightELS = IInstagramReportPostHighLightELS;
|
|
10577
10886
|
type index$5_IInstagramReportPostNew = IInstagramReportPostNew;
|
|
10887
|
+
type index$5_IInstagramReportPostNewELS = IInstagramReportPostNewELS;
|
|
10578
10888
|
type index$5_IInstagramReportPostReel = IInstagramReportPostReel;
|
|
10889
|
+
type index$5_IInstagramReportPostReelELS = IInstagramReportPostReelELS;
|
|
10579
10890
|
type index$5_IInstagramReportPostSquare = IInstagramReportPostSquare;
|
|
10891
|
+
type index$5_IInstagramReportPostSquareELS = IInstagramReportPostSquareELS;
|
|
10580
10892
|
type index$5_IInstagramReportPostStory = IInstagramReportPostStory;
|
|
10893
|
+
type index$5_IInstagramReportPostStoryELS = IInstagramReportPostStoryELS;
|
|
10581
10894
|
type index$5_IInstagramSettingInteractBlockUser = IInstagramSettingInteractBlockUser;
|
|
10582
10895
|
type index$5_IInstagramSettingInteractExplore = IInstagramSettingInteractExplore;
|
|
10583
10896
|
type index$5_IInstagramSettingInteractFollow = IInstagramSettingInteractFollow;
|
|
@@ -10616,16 +10929,20 @@ type index$5_IThreadsHistoryCreateNewELS = IThreadsHistoryCreateNewELS;
|
|
|
10616
10929
|
type index$5_IThreadsHistoryGroup = IThreadsHistoryGroup;
|
|
10617
10930
|
type index$5_IThreadsHistoryGroupELS = IThreadsHistoryGroupELS;
|
|
10618
10931
|
type index$5_IThreadsReportInteractFollow = IThreadsReportInteractFollow;
|
|
10932
|
+
type index$5_IThreadsReportInteractFollowELS = IThreadsReportInteractFollowELS;
|
|
10619
10933
|
type index$5_IThreadsReportInteractReplyComment = IThreadsReportInteractReplyComment;
|
|
10934
|
+
type index$5_IThreadsReportInteractReplyCommentELS = IThreadsReportInteractReplyCommentELS;
|
|
10620
10935
|
type index$5_IThreadsReportInteractReplyMessage = IThreadsReportInteractReplyMessage;
|
|
10936
|
+
type index$5_IThreadsReportInteractReplyMessageELS = IThreadsReportInteractReplyMessageELS;
|
|
10621
10937
|
type index$5_IThreadsReportPost = IThreadsReportPost;
|
|
10938
|
+
type index$5_IThreadsReportPostELS = IThreadsReportPostELS;
|
|
10622
10939
|
type index$5_IThreadsSettingInteractFollow = IThreadsSettingInteractFollow;
|
|
10623
10940
|
type index$5_IThreadsSettingInteractReplyComment = IThreadsSettingInteractReplyComment;
|
|
10624
10941
|
type index$5_IThreadsSettingInteractReplyMessage = IThreadsSettingInteractReplyMessage;
|
|
10625
10942
|
type index$5_IThreadsSettingInteractUnFollow = IThreadsSettingInteractUnFollow;
|
|
10626
10943
|
type index$5_IThreadsSettingPost = IThreadsSettingPost;
|
|
10627
10944
|
declare namespace index$5 {
|
|
10628
|
-
export type { index$5_IAccountSocialBase as IAccountSocialBase, index$5_IAccountSocialGroup as IAccountSocialGroup, index$5_IInstagramAccountRaw as IInstagramAccountRaw, index$5_IInstagramAccountRun as IInstagramAccountRun, index$5_IInstagramDashboardFollower as IInstagramDashboardFollower, index$5_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, index$5_IInstagramHistoryAutoPost as IInstagramHistoryAutoPost, index$5_IInstagramHistoryAutoPostELS as IInstagramHistoryAutoPostELS, index$5_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, index$5_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, index$5_IInstagramHistoryBlockUser as IInstagramHistoryBlockUser, index$5_IInstagramHistoryBlockUserELS as IInstagramHistoryBlockUserELS, index$5_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, index$5_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, index$5_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, index$5_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, index$5_IInstagramHistoryFollow as IInstagramHistoryFollow, index$5_IInstagramHistoryFollowELS as IInstagramHistoryFollowELS, index$5_IInstagramHistoryGroup as IInstagramHistoryGroup, index$5_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, index$5_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, index$5_IInstagramReportInteractExplore as IInstagramReportInteractExplore, index$5_IInstagramReportInteractFollow as IInstagramReportInteractFollow, index$5_IInstagramReportInteractReel as IInstagramReportInteractReel, index$5_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, index$5_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, index$5_IInstagramReportInteractStory as IInstagramReportInteractStory, index$5_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, index$5_IInstagramReportPostHighLight as IInstagramReportPostHighLight, index$5_IInstagramReportPostNew as IInstagramReportPostNew, index$5_IInstagramReportPostReel as IInstagramReportPostReel, index$5_IInstagramReportPostSquare as IInstagramReportPostSquare, index$5_IInstagramReportPostStory as IInstagramReportPostStory, index$5_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, index$5_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, index$5_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, index$5_IInstagramSettingInteractReel as IInstagramSettingInteractReel, index$5_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, index$5_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, index$5_IInstagramSettingInteractStory as IInstagramSettingInteractStory, index$5_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, index$5_IInstagramSettingPost as IInstagramSettingPost, index$5_ISheetImportSocial as ISheetImportSocial, index$5_ISocialTaskManager as ISocialTaskManager, index$5_ITaskInstagramBlockUser as ITaskInstagramBlockUser, index$5_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, index$5_ITaskInstagramFollow as ITaskInstagramFollow, index$5_ITaskInstagramInteractExplore as ITaskInstagramInteractExplore, index$5_ITaskInstagramInteractReel as ITaskInstagramInteractReel, index$5_ITaskInstagramInteractStory as ITaskInstagramInteractStory, index$5_ITaskInstagramPost as ITaskInstagramPost, index$5_ITaskInstagramReplyComment as ITaskInstagramReplyComment, index$5_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, index$5_ITaskThreadsFollow as ITaskThreadsFollow, index$5_ITaskThreadsPost as ITaskThreadsPost, index$5_ITaskThreadsReplyComment as ITaskThreadsReplyComment, index$5_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, index$5_IThreadsAccountRaw as IThreadsAccountRaw, index$5_IThreadsAccountRun as IThreadsAccountRun, index$5_IThreadsDashboardFollower as IThreadsDashboardFollower, index$5_IThreadsHistoryAutoPost as IThreadsHistoryAutoPost, index$5_IThreadsHistoryAutoPostELS as IThreadsHistoryAutoPostELS, index$5_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, index$5_IThreadsHistoryAutoSyncELS as IThreadsHistoryAutoSyncELS, index$5_IThreadsHistoryChange as IThreadsHistoryChange, index$5_IThreadsHistoryChangeInfoELS as IThreadsHistoryChangeInfoELS, index$5_IThreadsHistoryCreateNew as IThreadsHistoryCreateNew, index$5_IThreadsHistoryCreateNewELS as IThreadsHistoryCreateNewELS, index$5_IThreadsHistoryGroup as IThreadsHistoryGroup, index$5_IThreadsHistoryGroupELS as IThreadsHistoryGroupELS, index$5_IThreadsReportInteractFollow as IThreadsReportInteractFollow, index$5_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, index$5_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, index$5_IThreadsReportPost as IThreadsReportPost, index$5_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, index$5_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, index$5_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, index$5_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, index$5_IThreadsSettingPost as IThreadsSettingPost };
|
|
10945
|
+
export type { index$5_IAccountSocialBase as IAccountSocialBase, index$5_IAccountSocialGroup as IAccountSocialGroup, index$5_IInstagramAccountRaw as IInstagramAccountRaw, index$5_IInstagramAccountRun as IInstagramAccountRun, index$5_IInstagramDashboardFollower as IInstagramDashboardFollower, index$5_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, index$5_IInstagramHistoryAutoPost as IInstagramHistoryAutoPost, index$5_IInstagramHistoryAutoPostELS as IInstagramHistoryAutoPostELS, index$5_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, index$5_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, index$5_IInstagramHistoryBlockUser as IInstagramHistoryBlockUser, index$5_IInstagramHistoryBlockUserELS as IInstagramHistoryBlockUserELS, index$5_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, index$5_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, index$5_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, index$5_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, index$5_IInstagramHistoryFollow as IInstagramHistoryFollow, index$5_IInstagramHistoryFollowELS as IInstagramHistoryFollowELS, index$5_IInstagramHistoryGroup as IInstagramHistoryGroup, index$5_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, index$5_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, index$5_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, index$5_IInstagramReportInteractExplore as IInstagramReportInteractExplore, index$5_IInstagramReportInteractExploreELS as IInstagramReportInteractExploreELS, index$5_IInstagramReportInteractFollow as IInstagramReportInteractFollow, index$5_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, index$5_IInstagramReportInteractReel as IInstagramReportInteractReel, index$5_IInstagramReportInteractReelELS as IInstagramReportInteractReelELS, index$5_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, index$5_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, index$5_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, index$5_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, index$5_IInstagramReportInteractStory as IInstagramReportInteractStory, index$5_IInstagramReportInteractStoryELS as IInstagramReportInteractStoryELS, index$5_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, index$5_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, index$5_IInstagramReportPostHighLight as IInstagramReportPostHighLight, index$5_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, index$5_IInstagramReportPostNew as IInstagramReportPostNew, index$5_IInstagramReportPostNewELS as IInstagramReportPostNewELS, index$5_IInstagramReportPostReel as IInstagramReportPostReel, index$5_IInstagramReportPostReelELS as IInstagramReportPostReelELS, index$5_IInstagramReportPostSquare as IInstagramReportPostSquare, index$5_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, index$5_IInstagramReportPostStory as IInstagramReportPostStory, index$5_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, index$5_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, index$5_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, index$5_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, index$5_IInstagramSettingInteractReel as IInstagramSettingInteractReel, index$5_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, index$5_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, index$5_IInstagramSettingInteractStory as IInstagramSettingInteractStory, index$5_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, index$5_IInstagramSettingPost as IInstagramSettingPost, index$5_ISheetImportSocial as ISheetImportSocial, index$5_ISocialTaskManager as ISocialTaskManager, index$5_ITaskInstagramBlockUser as ITaskInstagramBlockUser, index$5_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, index$5_ITaskInstagramFollow as ITaskInstagramFollow, index$5_ITaskInstagramInteractExplore as ITaskInstagramInteractExplore, index$5_ITaskInstagramInteractReel as ITaskInstagramInteractReel, index$5_ITaskInstagramInteractStory as ITaskInstagramInteractStory, index$5_ITaskInstagramPost as ITaskInstagramPost, index$5_ITaskInstagramReplyComment as ITaskInstagramReplyComment, index$5_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, index$5_ITaskThreadsFollow as ITaskThreadsFollow, index$5_ITaskThreadsPost as ITaskThreadsPost, index$5_ITaskThreadsReplyComment as ITaskThreadsReplyComment, index$5_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, index$5_IThreadsAccountRaw as IThreadsAccountRaw, index$5_IThreadsAccountRun as IThreadsAccountRun, index$5_IThreadsDashboardFollower as IThreadsDashboardFollower, index$5_IThreadsHistoryAutoPost as IThreadsHistoryAutoPost, index$5_IThreadsHistoryAutoPostELS as IThreadsHistoryAutoPostELS, index$5_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, index$5_IThreadsHistoryAutoSyncELS as IThreadsHistoryAutoSyncELS, index$5_IThreadsHistoryChange as IThreadsHistoryChange, index$5_IThreadsHistoryChangeInfoELS as IThreadsHistoryChangeInfoELS, index$5_IThreadsHistoryCreateNew as IThreadsHistoryCreateNew, index$5_IThreadsHistoryCreateNewELS as IThreadsHistoryCreateNewELS, index$5_IThreadsHistoryGroup as IThreadsHistoryGroup, index$5_IThreadsHistoryGroupELS as IThreadsHistoryGroupELS, index$5_IThreadsReportInteractFollow as IThreadsReportInteractFollow, index$5_IThreadsReportInteractFollowELS as IThreadsReportInteractFollowELS, index$5_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, index$5_IThreadsReportInteractReplyCommentELS as IThreadsReportInteractReplyCommentELS, index$5_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, index$5_IThreadsReportInteractReplyMessageELS as IThreadsReportInteractReplyMessageELS, index$5_IThreadsReportPost as IThreadsReportPost, index$5_IThreadsReportPostELS as IThreadsReportPostELS, index$5_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, index$5_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, index$5_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, index$5_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, index$5_IThreadsSettingPost as IThreadsSettingPost };
|
|
10629
10946
|
}
|
|
10630
10947
|
|
|
10631
10948
|
interface IManagerImageAIUserAttached extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -11013,18 +11330,31 @@ type index$1_IInstagramHistoryFollowELS = IInstagramHistoryFollowELS;
|
|
|
11013
11330
|
type index$1_IInstagramHistoryGroup = IInstagramHistoryGroup;
|
|
11014
11331
|
type index$1_IInstagramHistoryGroupELS = IInstagramHistoryGroupELS;
|
|
11015
11332
|
type index$1_IInstagramReportInteractBlockUser = IInstagramReportInteractBlockUser;
|
|
11333
|
+
type index$1_IInstagramReportInteractBlockUserELS = IInstagramReportInteractBlockUserELS;
|
|
11016
11334
|
type index$1_IInstagramReportInteractExplore = IInstagramReportInteractExplore;
|
|
11335
|
+
type index$1_IInstagramReportInteractExploreELS = IInstagramReportInteractExploreELS;
|
|
11017
11336
|
type index$1_IInstagramReportInteractFollow = IInstagramReportInteractFollow;
|
|
11337
|
+
type index$1_IInstagramReportInteractFollowELS = IInstagramReportInteractFollowELS;
|
|
11018
11338
|
type index$1_IInstagramReportInteractReel = IInstagramReportInteractReel;
|
|
11339
|
+
type index$1_IInstagramReportInteractReelELS = IInstagramReportInteractReelELS;
|
|
11019
11340
|
type index$1_IInstagramReportInteractReplyComment = IInstagramReportInteractReplyComment;
|
|
11341
|
+
type index$1_IInstagramReportInteractReplyCommentELS = IInstagramReportInteractReplyCommentELS;
|
|
11020
11342
|
type index$1_IInstagramReportInteractReplyMessage = IInstagramReportInteractReplyMessage;
|
|
11343
|
+
type index$1_IInstagramReportInteractReplyMessageELS = IInstagramReportInteractReplyMessageELS;
|
|
11021
11344
|
type index$1_IInstagramReportInteractStory = IInstagramReportInteractStory;
|
|
11345
|
+
type index$1_IInstagramReportInteractStoryELS = IInstagramReportInteractStoryELS;
|
|
11022
11346
|
type index$1_IInstagramReportInteractUnFollow = IInstagramReportInteractUnFollow;
|
|
11347
|
+
type index$1_IInstagramReportInteractUnFollowELS = IInstagramReportInteractUnFollowELS;
|
|
11023
11348
|
type index$1_IInstagramReportPostHighLight = IInstagramReportPostHighLight;
|
|
11349
|
+
type index$1_IInstagramReportPostHighLightELS = IInstagramReportPostHighLightELS;
|
|
11024
11350
|
type index$1_IInstagramReportPostNew = IInstagramReportPostNew;
|
|
11351
|
+
type index$1_IInstagramReportPostNewELS = IInstagramReportPostNewELS;
|
|
11025
11352
|
type index$1_IInstagramReportPostReel = IInstagramReportPostReel;
|
|
11353
|
+
type index$1_IInstagramReportPostReelELS = IInstagramReportPostReelELS;
|
|
11026
11354
|
type index$1_IInstagramReportPostSquare = IInstagramReportPostSquare;
|
|
11355
|
+
type index$1_IInstagramReportPostSquareELS = IInstagramReportPostSquareELS;
|
|
11027
11356
|
type index$1_IInstagramReportPostStory = IInstagramReportPostStory;
|
|
11357
|
+
type index$1_IInstagramReportPostStoryELS = IInstagramReportPostStoryELS;
|
|
11028
11358
|
type index$1_IInstagramSettingInteractBlockUser = IInstagramSettingInteractBlockUser;
|
|
11029
11359
|
type index$1_IInstagramSettingInteractExplore = IInstagramSettingInteractExplore;
|
|
11030
11360
|
type index$1_IInstagramSettingInteractFollow = IInstagramSettingInteractFollow;
|
|
@@ -11109,9 +11439,13 @@ type index$1_IThreadsHistoryCreateNewELS = IThreadsHistoryCreateNewELS;
|
|
|
11109
11439
|
type index$1_IThreadsHistoryGroup = IThreadsHistoryGroup;
|
|
11110
11440
|
type index$1_IThreadsHistoryGroupELS = IThreadsHistoryGroupELS;
|
|
11111
11441
|
type index$1_IThreadsReportInteractFollow = IThreadsReportInteractFollow;
|
|
11442
|
+
type index$1_IThreadsReportInteractFollowELS = IThreadsReportInteractFollowELS;
|
|
11112
11443
|
type index$1_IThreadsReportInteractReplyComment = IThreadsReportInteractReplyComment;
|
|
11444
|
+
type index$1_IThreadsReportInteractReplyCommentELS = IThreadsReportInteractReplyCommentELS;
|
|
11113
11445
|
type index$1_IThreadsReportInteractReplyMessage = IThreadsReportInteractReplyMessage;
|
|
11446
|
+
type index$1_IThreadsReportInteractReplyMessageELS = IThreadsReportInteractReplyMessageELS;
|
|
11114
11447
|
type index$1_IThreadsReportPost = IThreadsReportPost;
|
|
11448
|
+
type index$1_IThreadsReportPostELS = IThreadsReportPostELS;
|
|
11115
11449
|
type index$1_IThreadsSettingInteractFollow = IThreadsSettingInteractFollow;
|
|
11116
11450
|
type index$1_IThreadsSettingInteractReplyComment = IThreadsSettingInteractReplyComment;
|
|
11117
11451
|
type index$1_IThreadsSettingInteractReplyMessage = IThreadsSettingInteractReplyMessage;
|
|
@@ -11128,7 +11462,7 @@ type index$1_IVoiceLanguage = IVoiceLanguage;
|
|
|
11128
11462
|
type index$1_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
11129
11463
|
type index$1_IVoiceStores = IVoiceStores;
|
|
11130
11464
|
declare namespace index$1 {
|
|
11131
|
-
export { index$2 as Auth, index$9 as Common, index$8 as Forum, index$3 as History, type index$1_IAccountAIContent as IAccountAIContent, type index$1_IAccountAIContentChannel as IAccountAIContentChannel, type index$1_IAccountAIContentGroup as IAccountAIContentGroup, type index$1_IAccountAIContentInfo as IAccountAIContentInfo, type index$1_IAccountAIContentMemberAssigned as IAccountAIContentMemberAssigned, type index$1_IAccountAIContentTag as IAccountAIContentTag, type index$1_IAccountAIImage as IAccountAIImage, type index$1_IAccountAIImageChannel as IAccountAIImageChannel, type index$1_IAccountAIImageGroup as IAccountAIImageGroup, type index$1_IAccountAIImageInfo as IAccountAIImageInfo, type index$1_IAccountAIImageMemberAssigned as IAccountAIImageMemberAssigned, type index$1_IAccountAIImageTag as IAccountAIImageTag, type index$1_IAccountAIVoice as IAccountAIVoice, type index$1_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$1_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$1_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$1_IAccountAIVoiceMemberAssigned as IAccountAIVoiceMemberAssigned, type index$1_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$1_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$1_IAccountCanva as IAccountCanva, type index$1_IAccountDrive as IAccountDrive, type index$1_IAccountEmail as IAccountEmail, type index$1_IAccountEmailProxy as IAccountEmailProxy, type index$1_IAccountEmailTag as IAccountEmailTag, type index$1_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$1_IAccountSocialBase as IAccountSocialBase, type index$1_IAccountSocialGroup as IAccountSocialGroup, type index$1_IAccountVPN as IAccountVPN, type index$1_IAccountVPS as IAccountVPS, type index$1_IAccountVPSGroup as IAccountVPSGroup, type index$1_IAccountVPSSocial as IAccountVPSSocial, type index$1_IAuthLogin as IAuthLogin, type index$1_IAuthResetPassword as IAuthResetPassword, type index$1_IBaseModel as IBaseModel, type index$1_IBlog as IBlog, type index$1_IBlogCategory as IBlogCategory, type index$1_IBlogDepartmentPermission as IBlogDepartmentPermission, type index$1_IBlogTeamPermission as IBlogTeamPermission, type index$1_IBlogUserPermission as IBlogUserPermission, type index$1_IDepartment as IDepartment, type index$1_IDepartmentMember as IDepartmentMember, type index$1_IDevice as IDevice, type index$1_IDeviceLog as IDeviceLog, type index$1_IDeviceLogELS as IDeviceLogELS, type index$1_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$1_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, type index$1_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$1_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$1_IDomain as IDomain, type index$1_IFile as IFile, type index$1_IGPMProfile as IGPMProfile, type index$1_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$1_IHistoryTaskAIImage as IHistoryTaskAIImage, type index$1_IHistoryTaskAIVoice as IHistoryTaskAIVoice, type index$1_IHistoryTaskCanva as IHistoryTaskCanva, type index$1_IInstagramAccountRaw as IInstagramAccountRaw, type index$1_IInstagramAccountRun as IInstagramAccountRun, type index$1_IInstagramDashboardFollower as IInstagramDashboardFollower, type index$1_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, type index$1_IInstagramHistoryAutoPost as IInstagramHistoryAutoPost, type index$1_IInstagramHistoryAutoPostELS as IInstagramHistoryAutoPostELS, type index$1_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$1_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, type index$1_IInstagramHistoryBlockUser as IInstagramHistoryBlockUser, type index$1_IInstagramHistoryBlockUserELS as IInstagramHistoryBlockUserELS, type index$1_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, type index$1_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, type index$1_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, type index$1_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, type index$1_IInstagramHistoryFollow as IInstagramHistoryFollow, type index$1_IInstagramHistoryFollowELS as IInstagramHistoryFollowELS, type index$1_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$1_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, type index$1_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, type index$1_IInstagramReportInteractExplore as IInstagramReportInteractExplore, type index$1_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$1_IInstagramReportInteractReel as IInstagramReportInteractReel, type index$1_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$1_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$1_IInstagramReportInteractStory as IInstagramReportInteractStory, type index$1_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, type index$1_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$1_IInstagramReportPostNew as IInstagramReportPostNew, type index$1_IInstagramReportPostReel as IInstagramReportPostReel, type index$1_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$1_IInstagramReportPostStory as IInstagramReportPostStory, type index$1_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, type index$1_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$1_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$1_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$1_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$1_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$1_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$1_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$1_IInstagramSettingPost as IInstagramSettingPost, type index$1_ILark as ILark, type index$1_ILarkTeam as ILarkTeam, type index$1_IManagerImageAI as IManagerImageAI, type index$1_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$1_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$1_IManagerSheet as IManagerSheet, type index$1_IManagerSheetChildren as IManagerSheetChildren, type index$1_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$1_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$1_IManagerSheetGroup as IManagerSheetGroup, type index$1_IManagerWork as IManagerWork, type index$1_IOtpConfirm as IOtpConfirm, type index$1_IOtpCreateSession as IOtpCreateSession, type index$1_IOtpSend as IOtpSend, type index$1_IPC as IPC, type index$1_IProxy as IProxy, type index$1_IRole as IRole, type index$1_IRoleFeature as IRoleFeature, type index$1_ISheetImportSocial as ISheetImportSocial, type index$1_ISheetWork as ISheetWork, type index$1_ISheetWorkDepartmentPermission as ISheetWorkDepartmentPermission, type index$1_ISheetWorkManager as ISheetWorkManager, type index$1_ISheetWorkUserPermission as ISheetWorkUserPermission, type index$1_ISheetWorksCategory as ISheetWorksCategory, type index$1_ISheetsTool as ISheetsTool, type index$1_ISocialTaskManager as ISocialTaskManager, type index$1_ITag as ITag, type index$1_ITaskAIContent as ITaskAIContent, type index$1_ITaskAIImageCanvaInstagram as ITaskAIImageCanvaInstagram, type index$1_ITaskAIImageCanvaThreads as ITaskAIImageCanvaThreads, type index$1_ITaskAIImageVoiceCanvaInstagram as ITaskAIImageVoiceCanvaInstagram, type index$1_ITaskAIImageVoiceCanvaThreads as ITaskAIImageVoiceCanvaThreads, type index$1_ITaskAIItemAction as ITaskAIItemAction, type index$1_ITaskAIItemGroup as ITaskAIItemGroup, type index$1_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$1_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$1_ITaskInstagramFollow as ITaskInstagramFollow, type index$1_ITaskInstagramInteractExplore as ITaskInstagramInteractExplore, type index$1_ITaskInstagramInteractReel as ITaskInstagramInteractReel, type index$1_ITaskInstagramInteractStory as ITaskInstagramInteractStory, type index$1_ITaskInstagramPost as ITaskInstagramPost, type index$1_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$1_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, type index$1_ITaskJob as ITaskJob, type index$1_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, type index$1_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$1_ITaskJobCheckList as ITaskJobCheckList, type index$1_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$1_ITaskJobDiscuss as ITaskJobDiscuss, type index$1_ITaskJobLabel as ITaskJobLabel, type index$1_ITaskJobPermission as ITaskJobPermission, type index$1_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$1_ITaskJobUserPermission as ITaskJobUserPermission, type index$1_ITaskJobsGroup as ITaskJobsGroup, type index$1_ITaskThreadsFollow as ITaskThreadsFollow, type index$1_ITaskThreadsPost as ITaskThreadsPost, type index$1_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$1_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, type index$1_ITeam as ITeam, type index$1_ITeamMember as ITeamMember, type index$1_ITeamRole as ITeamRole, type index$1_IThreadsAccountRaw as IThreadsAccountRaw, type index$1_IThreadsAccountRun as IThreadsAccountRun, type index$1_IThreadsDashboardFollower as IThreadsDashboardFollower, type index$1_IThreadsHistoryAutoPost as IThreadsHistoryAutoPost, type index$1_IThreadsHistoryAutoPostELS as IThreadsHistoryAutoPostELS, type index$1_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, type index$1_IThreadsHistoryAutoSyncELS as IThreadsHistoryAutoSyncELS, type index$1_IThreadsHistoryChange as IThreadsHistoryChange, type index$1_IThreadsHistoryChangeInfoELS as IThreadsHistoryChangeInfoELS, type index$1_IThreadsHistoryCreateNew as IThreadsHistoryCreateNew, type index$1_IThreadsHistoryCreateNewELS as IThreadsHistoryCreateNewELS, type index$1_IThreadsHistoryGroup as IThreadsHistoryGroup, type index$1_IThreadsHistoryGroupELS as IThreadsHistoryGroupELS, type index$1_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$1_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$1_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$1_IThreadsReportPost as IThreadsReportPost, type index$1_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$1_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$1_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, type index$1_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, type index$1_IThreadsSettingPost as IThreadsSettingPost, type index$1_IToken as IToken, type index$1_ITrackingModel as ITrackingModel, type index$1_ITrackingTimeScript as ITrackingTimeScript, type index$1_ITrackingUserAction as ITrackingUserAction, type index$1_IUser as IUser, type index$1_IUserRole as IUserRole, type index$1_IVoiceGenerated as IVoiceGenerated, type index$1_IVoiceLanguage as IVoiceLanguage, type index$1_IVoiceSettingDelay as IVoiceSettingDelay, type index$1_IVoiceStores as IVoiceStores, index$a as Permission, index$5 as Socials, index$4 as Tool, index$7 as Workspace };
|
|
11465
|
+
export { index$2 as Auth, index$9 as Common, index$8 as Forum, index$3 as History, type index$1_IAccountAIContent as IAccountAIContent, type index$1_IAccountAIContentChannel as IAccountAIContentChannel, type index$1_IAccountAIContentGroup as IAccountAIContentGroup, type index$1_IAccountAIContentInfo as IAccountAIContentInfo, type index$1_IAccountAIContentMemberAssigned as IAccountAIContentMemberAssigned, type index$1_IAccountAIContentTag as IAccountAIContentTag, type index$1_IAccountAIImage as IAccountAIImage, type index$1_IAccountAIImageChannel as IAccountAIImageChannel, type index$1_IAccountAIImageGroup as IAccountAIImageGroup, type index$1_IAccountAIImageInfo as IAccountAIImageInfo, type index$1_IAccountAIImageMemberAssigned as IAccountAIImageMemberAssigned, type index$1_IAccountAIImageTag as IAccountAIImageTag, type index$1_IAccountAIVoice as IAccountAIVoice, type index$1_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$1_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$1_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$1_IAccountAIVoiceMemberAssigned as IAccountAIVoiceMemberAssigned, type index$1_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$1_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$1_IAccountCanva as IAccountCanva, type index$1_IAccountDrive as IAccountDrive, type index$1_IAccountEmail as IAccountEmail, type index$1_IAccountEmailProxy as IAccountEmailProxy, type index$1_IAccountEmailTag as IAccountEmailTag, type index$1_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$1_IAccountSocialBase as IAccountSocialBase, type index$1_IAccountSocialGroup as IAccountSocialGroup, type index$1_IAccountVPN as IAccountVPN, type index$1_IAccountVPS as IAccountVPS, type index$1_IAccountVPSGroup as IAccountVPSGroup, type index$1_IAccountVPSSocial as IAccountVPSSocial, type index$1_IAuthLogin as IAuthLogin, type index$1_IAuthResetPassword as IAuthResetPassword, type index$1_IBaseModel as IBaseModel, type index$1_IBlog as IBlog, type index$1_IBlogCategory as IBlogCategory, type index$1_IBlogDepartmentPermission as IBlogDepartmentPermission, type index$1_IBlogTeamPermission as IBlogTeamPermission, type index$1_IBlogUserPermission as IBlogUserPermission, type index$1_IDepartment as IDepartment, type index$1_IDepartmentMember as IDepartmentMember, type index$1_IDevice as IDevice, type index$1_IDeviceLog as IDeviceLog, type index$1_IDeviceLogELS as IDeviceLogELS, type index$1_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$1_IDeviceSettingForCHPlayICloud as IDeviceSettingForCHPlayICloud, type index$1_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$1_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$1_IDomain as IDomain, type index$1_IFile as IFile, type index$1_IGPMProfile as IGPMProfile, type index$1_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$1_IHistoryTaskAIImage as IHistoryTaskAIImage, type index$1_IHistoryTaskAIVoice as IHistoryTaskAIVoice, type index$1_IHistoryTaskCanva as IHistoryTaskCanva, type index$1_IInstagramAccountRaw as IInstagramAccountRaw, type index$1_IInstagramAccountRun as IInstagramAccountRun, type index$1_IInstagramDashboardFollower as IInstagramDashboardFollower, type index$1_IInstagramDashboardFollowerELS as IInstagramDashboardFollowerELS, type index$1_IInstagramHistoryAutoPost as IInstagramHistoryAutoPost, type index$1_IInstagramHistoryAutoPostELS as IInstagramHistoryAutoPostELS, type index$1_IInstagramHistoryAutoSync as IInstagramHistoryAutoSync, type index$1_IInstagramHistoryAutoSyncELS as IInstagramHistoryAutoSyncELS, type index$1_IInstagramHistoryBlockUser as IInstagramHistoryBlockUser, type index$1_IInstagramHistoryBlockUserELS as IInstagramHistoryBlockUserELS, type index$1_IInstagramHistoryChangeInfo as IInstagramHistoryChangeInfo, type index$1_IInstagramHistoryChangeInfoELS as IInstagramHistoryChangeInfoELS, type index$1_IInstagramHistoryCreateNew as IInstagramHistoryCreateNew, type index$1_IInstagramHistoryCreateNewELS as IInstagramHistoryCreateNewELS, type index$1_IInstagramHistoryFollow as IInstagramHistoryFollow, type index$1_IInstagramHistoryFollowELS as IInstagramHistoryFollowELS, type index$1_IInstagramHistoryGroup as IInstagramHistoryGroup, type index$1_IInstagramHistoryGroupELS as IInstagramHistoryGroupELS, type index$1_IInstagramReportInteractBlockUser as IInstagramReportInteractBlockUser, type index$1_IInstagramReportInteractBlockUserELS as IInstagramReportInteractBlockUserELS, type index$1_IInstagramReportInteractExplore as IInstagramReportInteractExplore, type index$1_IInstagramReportInteractExploreELS as IInstagramReportInteractExploreELS, type index$1_IInstagramReportInteractFollow as IInstagramReportInteractFollow, type index$1_IInstagramReportInteractFollowELS as IInstagramReportInteractFollowELS, type index$1_IInstagramReportInteractReel as IInstagramReportInteractReel, type index$1_IInstagramReportInteractReelELS as IInstagramReportInteractReelELS, type index$1_IInstagramReportInteractReplyComment as IInstagramReportInteractReplyComment, type index$1_IInstagramReportInteractReplyCommentELS as IInstagramReportInteractReplyCommentELS, type index$1_IInstagramReportInteractReplyMessage as IInstagramReportInteractReplyMessage, type index$1_IInstagramReportInteractReplyMessageELS as IInstagramReportInteractReplyMessageELS, type index$1_IInstagramReportInteractStory as IInstagramReportInteractStory, type index$1_IInstagramReportInteractStoryELS as IInstagramReportInteractStoryELS, type index$1_IInstagramReportInteractUnFollow as IInstagramReportInteractUnFollow, type index$1_IInstagramReportInteractUnFollowELS as IInstagramReportInteractUnFollowELS, type index$1_IInstagramReportPostHighLight as IInstagramReportPostHighLight, type index$1_IInstagramReportPostHighLightELS as IInstagramReportPostHighLightELS, type index$1_IInstagramReportPostNew as IInstagramReportPostNew, type index$1_IInstagramReportPostNewELS as IInstagramReportPostNewELS, type index$1_IInstagramReportPostReel as IInstagramReportPostReel, type index$1_IInstagramReportPostReelELS as IInstagramReportPostReelELS, type index$1_IInstagramReportPostSquare as IInstagramReportPostSquare, type index$1_IInstagramReportPostSquareELS as IInstagramReportPostSquareELS, type index$1_IInstagramReportPostStory as IInstagramReportPostStory, type index$1_IInstagramReportPostStoryELS as IInstagramReportPostStoryELS, type index$1_IInstagramSettingInteractBlockUser as IInstagramSettingInteractBlockUser, type index$1_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$1_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$1_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$1_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$1_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$1_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$1_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$1_IInstagramSettingPost as IInstagramSettingPost, type index$1_ILark as ILark, type index$1_ILarkTeam as ILarkTeam, type index$1_IManagerImageAI as IManagerImageAI, type index$1_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$1_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$1_IManagerSheet as IManagerSheet, type index$1_IManagerSheetChildren as IManagerSheetChildren, type index$1_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$1_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$1_IManagerSheetGroup as IManagerSheetGroup, type index$1_IManagerWork as IManagerWork, type index$1_IOtpConfirm as IOtpConfirm, type index$1_IOtpCreateSession as IOtpCreateSession, type index$1_IOtpSend as IOtpSend, type index$1_IPC as IPC, type index$1_IProxy as IProxy, type index$1_IRole as IRole, type index$1_IRoleFeature as IRoleFeature, type index$1_ISheetImportSocial as ISheetImportSocial, type index$1_ISheetWork as ISheetWork, type index$1_ISheetWorkDepartmentPermission as ISheetWorkDepartmentPermission, type index$1_ISheetWorkManager as ISheetWorkManager, type index$1_ISheetWorkUserPermission as ISheetWorkUserPermission, type index$1_ISheetWorksCategory as ISheetWorksCategory, type index$1_ISheetsTool as ISheetsTool, type index$1_ISocialTaskManager as ISocialTaskManager, type index$1_ITag as ITag, type index$1_ITaskAIContent as ITaskAIContent, type index$1_ITaskAIImageCanvaInstagram as ITaskAIImageCanvaInstagram, type index$1_ITaskAIImageCanvaThreads as ITaskAIImageCanvaThreads, type index$1_ITaskAIImageVoiceCanvaInstagram as ITaskAIImageVoiceCanvaInstagram, type index$1_ITaskAIImageVoiceCanvaThreads as ITaskAIImageVoiceCanvaThreads, type index$1_ITaskAIItemAction as ITaskAIItemAction, type index$1_ITaskAIItemGroup as ITaskAIItemGroup, type index$1_ITaskInstagramBlockUser as ITaskInstagramBlockUser, type index$1_ITaskInstagramChangeInfo as ITaskInstagramChangeInfo, type index$1_ITaskInstagramFollow as ITaskInstagramFollow, type index$1_ITaskInstagramInteractExplore as ITaskInstagramInteractExplore, type index$1_ITaskInstagramInteractReel as ITaskInstagramInteractReel, type index$1_ITaskInstagramInteractStory as ITaskInstagramInteractStory, type index$1_ITaskInstagramPost as ITaskInstagramPost, type index$1_ITaskInstagramReplyComment as ITaskInstagramReplyComment, type index$1_ITaskInstagramReplyMessage as ITaskInstagramReplyMessage, type index$1_ITaskJob as ITaskJob, type index$1_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, type index$1_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$1_ITaskJobCheckList as ITaskJobCheckList, type index$1_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$1_ITaskJobDiscuss as ITaskJobDiscuss, type index$1_ITaskJobLabel as ITaskJobLabel, type index$1_ITaskJobPermission as ITaskJobPermission, type index$1_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$1_ITaskJobUserPermission as ITaskJobUserPermission, type index$1_ITaskJobsGroup as ITaskJobsGroup, type index$1_ITaskThreadsFollow as ITaskThreadsFollow, type index$1_ITaskThreadsPost as ITaskThreadsPost, type index$1_ITaskThreadsReplyComment as ITaskThreadsReplyComment, type index$1_ITaskThreadsReplyMessage as ITaskThreadsReplyMessage, type index$1_ITeam as ITeam, type index$1_ITeamMember as ITeamMember, type index$1_ITeamRole as ITeamRole, type index$1_IThreadsAccountRaw as IThreadsAccountRaw, type index$1_IThreadsAccountRun as IThreadsAccountRun, type index$1_IThreadsDashboardFollower as IThreadsDashboardFollower, type index$1_IThreadsHistoryAutoPost as IThreadsHistoryAutoPost, type index$1_IThreadsHistoryAutoPostELS as IThreadsHistoryAutoPostELS, type index$1_IThreadsHistoryAutoSync as IThreadsHistoryAutoSync, type index$1_IThreadsHistoryAutoSyncELS as IThreadsHistoryAutoSyncELS, type index$1_IThreadsHistoryChange as IThreadsHistoryChange, type index$1_IThreadsHistoryChangeInfoELS as IThreadsHistoryChangeInfoELS, type index$1_IThreadsHistoryCreateNew as IThreadsHistoryCreateNew, type index$1_IThreadsHistoryCreateNewELS as IThreadsHistoryCreateNewELS, type index$1_IThreadsHistoryGroup as IThreadsHistoryGroup, type index$1_IThreadsHistoryGroupELS as IThreadsHistoryGroupELS, type index$1_IThreadsReportInteractFollow as IThreadsReportInteractFollow, type index$1_IThreadsReportInteractFollowELS as IThreadsReportInteractFollowELS, type index$1_IThreadsReportInteractReplyComment as IThreadsReportInteractReplyComment, type index$1_IThreadsReportInteractReplyCommentELS as IThreadsReportInteractReplyCommentELS, type index$1_IThreadsReportInteractReplyMessage as IThreadsReportInteractReplyMessage, type index$1_IThreadsReportInteractReplyMessageELS as IThreadsReportInteractReplyMessageELS, type index$1_IThreadsReportPost as IThreadsReportPost, type index$1_IThreadsReportPostELS as IThreadsReportPostELS, type index$1_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$1_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$1_IThreadsSettingInteractReplyMessage as IThreadsSettingInteractReplyMessage, type index$1_IThreadsSettingInteractUnFollow as IThreadsSettingInteractUnFollow, type index$1_IThreadsSettingPost as IThreadsSettingPost, type index$1_IToken as IToken, type index$1_ITrackingModel as ITrackingModel, type index$1_ITrackingTimeScript as ITrackingTimeScript, type index$1_ITrackingUserAction as ITrackingUserAction, type index$1_IUser as IUser, type index$1_IUserRole as IUserRole, type index$1_IVoiceGenerated as IVoiceGenerated, type index$1_IVoiceLanguage as IVoiceLanguage, type index$1_IVoiceSettingDelay as IVoiceSettingDelay, type index$1_IVoiceStores as IVoiceStores, index$a as Permission, index$5 as Socials, index$4 as Tool, index$7 as Workspace };
|
|
11132
11466
|
}
|
|
11133
11467
|
|
|
11134
11468
|
interface IDataUser {
|
|
@@ -11181,4 +11515,4 @@ declare namespace index {
|
|
|
11181
11515
|
export type { index_IDataDiscussTaskJob as IDataDiscussTaskJob, index_IDataNotification as IDataNotification, index_IDataUser as IDataUser, index_IFilterStore as IFilterStore, index_IResponseLogin as IResponseLogin };
|
|
11182
11516
|
}
|
|
11183
11517
|
|
|
11184
|
-
export { index$i as AI, type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyAutoFillDeviceDto, type ApplyReplaceDeviceDto, type ApplyTimeDashboardDto, index$2 as Auth, index$j as AutoConstants, index$6 as AutoDto, index$c as AutoEnums, type AutoFillAssignedMemberInstagramAccountRawDto, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewTaskInstagramBlockUserDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillTaskInstagramBlockUserDto, type AutoFillThreadsAccountRawDto, index as AutoInterfacesCommon, index$1 as AutoInterfacesModels, index$b as AutoTypes, index$h as Base, type CheckSendMessageLark, index$9 as Common, type CreateAccountSocialGroupDto, type CreateAccountVPSDto, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateLarkDto, type CreateManagerWorkDto, type CreatePCDto, type CreateProxyDto, type CreateRoleDto, type CreateSheetToolDto, type CreateSheetWorkDto, type CreateTaskAIContentDto, type CreateTaskAIImageCanvaInstagramDto, type CreateTaskAIImageCanvaThreadsDto, type CreateTaskAIImageVoiceCanvaInstagramDto, type CreateTaskAIImageVoiceCanvaThreadsDto, type CreateTaskInstagramBlockUserDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskInstagramFollowDto, type CreateTaskInstagramInteractExploreDto, type CreateTaskInstagramInteractReelDto, type CreateTaskInstagramInteractStoryDto, type CreateTaskInstagramPostDto, type CreateTaskInstagramReplyCommentDto, type CreateTaskInstagramReplyMessageDto, type CreateTaskThreadsFollowDto, type CreateTaskThreadsPostDto, type CreateTaskThreadsReplyCommentDto, type CreateTaskThreadsReplyMessageDto, type CreateTasksJobDto, type CreateTeamDto, type CreateUserDto, EAIModelContent, EAIModelImage, EAIModelVoice, EAIVersionGPT, EAIVersionImage, EAIVersionPerplexity, EAIVersionVoice, EDeviceResetTime, EEmailTagType, EFile, EFolderImageAI, EGender, EHaveData, EInputTypeFilter, ELarkNotiAccountTool, ELarkNotiBase, ELarkNotiCreateNew, ELarkNotiDuplicateAll, ELarkNotiInstagramDetail, ELarkNotiManagerSheet, ELarkNotiRunAppDevice, ELarkNotiSocialImport, ELarkNotiToolDevice, ELarkObject, ELarkTypeNotification, EObjectName, EPositionUser, EPriority, ESheetToolInstagram, ESheetToolThreads, ESheetToolTimeCrawl, EStatusAccountAI, EStatusAccountCHPlayICloud, EStatusAccountCanva, EStatusAccountDrive, EStatusAccountSocial, EStatusAccountSocialFolderName, EStatusAccountSocialImport, EStatusAccountSocialLogin, EStatusAccountSocialLoginEmail, EStatusAccountSocialRun, EStatusAccountSocialSetting, EStatusAccountSocialSync, EStatusAccountTypeChangeInfoInstagram, EStatusAccountTypeChangeInfoThreads, EStatusAccountVPN, EStatusActive, EStatusBlog, EStatusChangeInfo, EStatusChannel, EStatusCommon, EStatusCreateNew, EStatusDeviceChangeName, EStatusDeviceChangeNew, EStatusDeviceConnectPC, EStatusDeviceConnectWifi, EStatusDeviceCurrent, EStatusDeviceHubStatus, EStatusDeviceLog, EStatusDeviceLoginCHPlayICloud, EStatusDeviceNew, EStatusDeviceOld, EStatusDeviceReplace, EStatusDeviceRunningSocial, EStatusDeviceSetupSettingTask, EStatusDeviceSync, EStatusEmail, EStatusExecuteCommon, EStatusLark, EStatusMailWork, EStatusPC, EStatusProxyChecked, EStatusProxyNewIP, EStatusRole, EStatusSheetWork, EStatusTaskAIContent, EStatusTaskAvatarCover, EStatusTaskCanva, EStatusTaskImage, EStatusTaskJob, EStatusTaskJobGroup, EStatusTaskScript, EStatusTaskToolSocials, EStatusTaskVoice, EStatusTeam, EStatusUser, EStatusVPS, EStatusVPSReplace, ETypeAccountInstagramSetting, ETypeAccountVPN, ETypeCanva, ETypeColumnManagerWork, ETypeDevice, ETypeDeviceLog, ETypeDeviceOS, ETypeExport, ETypeManagerWorkClassify, ETypeManagerWorkType, ETypePin, ETypeProviderAccountVPN, ETypeProxy, ETypeProxyChecked, ETypeProxyCountry, ETypeProxyNewIP, ETypeProxyProvider, ETypeRatioImage, ETypeSheetWorkClassify, ETypeSheetWorkPin, ETypeSocial, ETypeSocialChangeInfoThreads, ETypeSocialCreateNew, ETypeTaskID, ETypeTimeFilter, ETypeVoiceLanguage, type ExportDto, type FilterAccountAIContentChannelDto, type FilterAccountAIContentDto, type FilterAccountAIContentInfoDto, type FilterAccountAIImageChannelDto, type FilterAccountAIImageDto, type FilterAccountAIImageInfoDto, type FilterAccountAIVoiceChannelDto, type FilterAccountAIVoiceDto, type FilterAccountAIVoiceInfoDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountEmailDto, type FilterAccountSocialGroupDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBaseSocialDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterCheckerAccountInstagramDashboardFollowerDto, type FilterCheckerAccountThreadsDashboardFollowerDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterDeviceLogDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramDashboardFollowerDto, type FilterInstagramHistoryAutoPostDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryBlockUserDto, type FilterInstagramHistoryChangeInfoDto, type FilterInstagramHistoryCreateNewDto, type FilterInstagramHistoryFollowDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractBlockUserDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportInteractUnFollowDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractStoryDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterLarkDto, type FilterManagerImageAIDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterPerformanceBreakdownInstagramDashboardFollowerDto, type FilterPerformanceBreakdownThreadsDashboardFollowerDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkCategoryDto, type FilterSheetWorkDto, type FilterSheetsToolDto, type FilterTaskAIContentDto, type FilterTaskAIImageCanvaInstagramDto, type FilterTaskAIImageCanvaThreadsDto, type FilterTaskAIImageVoiceCanvaInstagramDto, type FilterTaskAIImageVoiceCanvaThreadsDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramInteractExploreDto, type FilterTaskInstagramInteractReelDto, type FilterTaskInstagramInteractStoryDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskThreadsReplyMessageDto, type FilterTeamDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsDashboardFollowerDto, type FilterThreadsHistoryAutoPostDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type 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 FindAccountForCheckerInstagramDashboard, type FindAccountForCheckerThreadsDashboard, type FindAccountSocialGroupDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindAutoFillDeviceDto, type FindBlogCategoryDto, type FindBlogDto, type FindCheckerAccountInstagramDashboardFollowerDto, type FindCheckerAccountThreadsDashboardFollowerDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindDeviceLogDto, type FindForReviewDto, type FindGrowthInstagramDashboardFollowerDto, type FindGrowthThreadsDashboardFollowerDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoPostDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryBlockUserDto, type FindInstagramHistoryChangeInfoDto, type FindInstagramHistoryCreateNewDto, type FindInstagramHistoryFollowDto, type FindInstagramHistoryGroupDto, type FindInstagramReportInteractBlockUserDto, type FindInstagramReportInteractExploreDto, type FindInstagramReportInteractFollowDto, type FindInstagramReportInteractReelDto, type FindInstagramReportInteractReplyCommentDto, type FindInstagramReportInteractReplyMessageDto, type FindInstagramReportInteractStoryDto, type FindInstagramReportInteractUnFollowDto, 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 FindMemberForAddTeamDto, type FindOverViewDepartmentDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewInstagramReportInteractBlockUserDto, type FindOverViewInstagramReportInteractExploreDto, type FindOverViewInstagramReportInteractFollowDto, type FindOverViewInstagramReportInteractReelDto, type FindOverViewInstagramReportInteractReplyCommentDto, type FindOverViewInstagramReportInteractReplyMessageDto, type FindOverViewInstagramReportInteractStoryDto, type FindOverViewInstagramReportInteractUnFollowDto, type FindOverViewInstagramReportPostHighLightDto, type FindOverViewInstagramReportPostNewDto, type FindOverViewInstagramReportPostReelDto, type FindOverViewInstagramReportPostSquareDto, type FindOverViewInstagramReportPostStoryDto, type FindOverViewLarkDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageCanvaInstagramDto, type FindOverViewTaskAIImageCanvaThreadsDto, type FindOverViewTaskAIImageVoiceCanvaInstagramDto, type FindOverViewTaskAIImageVoiceCanvaThreadsDto, type FindOverViewTaskInstagramBlockUserDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramFollowDto, type FindOverViewTaskInstagramInteractExploreDto, type FindOverViewTaskInstagramInteractReelDto, type FindOverViewTaskInstagramInteractStoryDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskInstagramReplyCommentDto, type FindOverViewTaskInstagramReplyMessageDto, type FindOverViewTaskThreadsFollowDto, type FindOverViewTaskThreadsPostDto, type FindOverViewTaskThreadsReplyCommentDto, type FindOverViewTaskThreadsReplyMessageDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverViewThreadsReportInteractFollowDto, type FindOverViewThreadsReportInteractReplyCommentDto, type FindOverViewThreadsReportInteractReplyMessageDto, type FindOverViewThreadsReportPostDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountEmailDto, type FindOverviewAccountVPNDto, type FindOverviewAccountVPSDto, type FindOverviewDeviceBasicDto, type FindOverviewDeviceDetailDto, type FindOverviewDeviceLog, type FindOverviewDeviceSocialMediaAccountDto, type FindOverviewDeviceSocialMediaActiveLockedDto, type FindOverviewInstagramDashboardFollowerDto, type FindOverviewInstagramHistoryAutoPostDto, type FindOverviewInstagramHistoryAutoSyncDto, type FindOverviewInstagramHistoryBlockUserDto, type FindOverviewInstagramHistoryChangeInfoDto, type FindOverviewInstagramHistoryCreateNewDto, type FindOverviewInstagramHistoryFollowDto, type FindOverviewInstagramHistoryGroupDto, type FindOverviewProxyDto, type FindOverviewRoleDto, type FindOverviewTeamDto, type FindOverviewThreadsDashboardFollowerDto, type FindOverviewUserDto, type FindPCDto, type FindPerformanceBreakdownInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, type FindPerformanceBreakdownThreadsDashboardFollowerDto, type FindProxyDto, type FindReplaceDeviceDto, type FindRoleDetailDto, type FindRoleDto, type FindRoleOfMe, type FindSheetWorkCategoryDto, type FindSheetWorkDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAIImageCanvaInstagramDto, type FindTaskAIImageCanvaThreadsDto, type FindTaskAIImageVoiceCanvaInstagramDto, type FindTaskAIImageVoiceCanvaThreadsDto, type FindTaskAvailableAIContentDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramInteractExploreDto, type FindTaskInstagramInteractReelDto, type FindTaskInstagramInteractStoryDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskThreadsReplyMessageDto, type FindTasksJobDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoPostDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateDto, type FindThreadsHistoryGroupDto, type FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportInteractReplyMessageDto, type FindThreadsReportPostDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$8 as Forum, index$3 as History, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentMemberAssigned, type IAccountAIContentTag, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageMemberAssigned, type IAccountAIImageTag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceMemberAssigned, type IAccountAIVoiceTag, type IAccountCHPlayICloud, type IAccountCanva, type IAccountDrive, type IAccountEmail, type IAccountEmailProxy, type IAccountEmailTag, type IAccountEmailTaskWork, type IAccountSocialBase, type IAccountSocialGroup, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAccountVPSSocial, type IAuthLogin, type IAuthResetPassword, type IBaseELS, type IBaseModel, type IBaseSheetImportDto, type IBlog, type IBlogCategory, type IBlogDepartmentPermission, type IBlogTeamPermission, type IBlogUserPermission, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentMember, type IDevice, type IDeviceAccountSocialBase, type IDeviceLog, type IDeviceLogELS, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterBaseAccountSocialDto, type IFilterBaseDto, type IFilterStore, type IFindBaseDto, type IGPMProfile, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramDashboardFollower, type IInstagramDashboardFollowerELS, type IInstagramHistoryAutoPost, type IInstagramHistoryAutoPostELS, type IInstagramHistoryAutoSync, type IInstagramHistoryAutoSyncELS, type IInstagramHistoryBlockUser, type IInstagramHistoryBlockUserELS, type IInstagramHistoryChangeInfo, type IInstagramHistoryChangeInfoELS, type IInstagramHistoryCreateNew, type IInstagramHistoryCreateNewELS, type IInstagramHistoryFollow, type IInstagramHistoryFollowELS, type IInstagramHistoryGroup, type IInstagramHistoryGroupELS, type IInstagramReportInteractBlockUser, type IInstagramReportInteractExplore, type IInstagramReportInteractFollow, type IInstagramReportInteractReel, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractStory, type IInstagramReportInteractUnFollow, type IInstagramReportPostHighLight, type IInstagramReportPostNew, type IInstagramReportPostReel, type IInstagramReportPostSquare, type IInstagramReportPostStory, type IInstagramSettingInteractBlockUser, type IInstagramSettingInteractExplore, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReel, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, type IInstagramSettingInteractStory, type IInstagramSettingInteractUnFollow, type IInstagramSettingPost, type ILark, type ILarkTeam, type IManagerImageAI, type IManagerImageAIItemStore, type IManagerImageAIUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISheetImportSocial, type ISheetWork, type ISheetWorkDepartmentPermission, type ISheetWorkManager, type ISheetWorkUserPermission, type ISheetWorksCategory, type ISheetsTool, type ISocialTaskManager, type ITag, type ITaskAIContent, type ITaskAIImageCanvaInstagram, type ITaskAIImageCanvaThreads, type ITaskAIImageVoiceCanvaInstagram, type ITaskAIImageVoiceCanvaThreads, type ITaskAIItemAction, type ITaskAIItemGroup, type ITaskInstagramBlockUser, type ITaskInstagramChangeInfo, type ITaskInstagramFollow, type ITaskInstagramInteractExplore, type ITaskInstagramInteractReel, type ITaskInstagramInteractStory, type ITaskInstagramPost, type ITaskInstagramReplyComment, type ITaskInstagramReplyMessage, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITaskThreadsFollow, type ITaskThreadsPost, type ITaskThreadsReplyComment, type ITaskThreadsReplyMessage, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsDashboardFollower, type IThreadsHistoryAutoPost, type IThreadsHistoryAutoPostELS, type IThreadsHistoryAutoSync, type IThreadsHistoryAutoSyncELS, type IThreadsHistoryChange, type IThreadsHistoryChangeInfoELS, type IThreadsHistoryCreateNew, type IThreadsHistoryCreateNewELS, type IThreadsHistoryGroup, type IThreadsHistoryGroupELS, 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 ImportAccountVPSDto, type ImportDto, type ImportManagerWorkDto, type ImportSheetWorkDto, index$g as Lark, type LoadInfoDeviceSheetToolDto, type LoadInfoUrlSheetToolDto, type OverviewSheetsToolDto, type PayloadUrlSheetToolDto, index$a as Permission, type ReplaceAccountVSPDto, index$f as SheetTool, index$5 as Socials, type StatisticsManagerWorkDto, type StatisticsSheetWorkDto, index$e as Status, type TActionRole, type TCompare, type TFilter, type TPost, type TPostStyle, index$4 as Tool, index$d as Types, type UpdateAccountSocialGroupDto, type UpdateAccountVPSDto, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateLarkDto, type UpdateManagerWorkDto, type UpdatePCDto, type UpdateProxyDto, type UpdateRoleDto, type UpdateSheetWorkDto, type UpdateSheetsToolDto, type UpdateTaskAIContentDto, type UpdateTaskAIImageCanvaInstagramDto, type UpdateTaskAIImageCanvaThreadsDto, type UpdateTaskAIImageVoiceCanvaInstagramDto, type UpdateTaskAIImageVoiceCanvaThreadsDto, type UpdateTaskInstagramBlockUserDto, type UpdateTaskInstagramChangeInfoDto, type UpdateTaskInstagramFollowDto, type UpdateTaskInstagramInteractExploreDto, type UpdateTaskInstagramInteractReelDto, type UpdateTaskInstagramInteractStoryDto, type UpdateTaskInstagramPostDto, type UpdateTaskInstagramReplyCommentDto, type UpdateTaskInstagramReplyMessageDto, type UpdateTaskThreadsFollowDto, type UpdateTaskThreadsPostDto, type UpdateTaskThreadsReplyCommentDto, type UpdateTaskThreadsReplyMessageDto, type UpdateTasksJobDto, type UpdateTeamDto, type UpdateUserDto, type ViewDetailDeviceDto, index$7 as Workspace };
|
|
11518
|
+
export { index$i as AI, type AddToDeviceAccountCHPlayICloudDto, type AddToDeviceAccountVPNDto, type AddToDeviceProxyDto, type ApplyAutoFillDeviceDto, type ApplyReplaceDeviceDto, type ApplyTimeDashboardDto, index$2 as Auth, index$j as AutoConstants, index$6 as AutoDto, index$c as AutoEnums, type AutoFillAssignedMemberInstagramAccountRawDto, type AutoFillInstagramAccountRawDto, type AutoFillOverviewInstagramAccountRawDto, type AutoFillOverviewTaskInstagramBlockUserDto, type AutoFillOverviewThreadsAccountRawDto, type AutoFillTaskInstagramBlockUserDto, type AutoFillThreadsAccountRawDto, index as AutoInterfacesCommon, index$1 as AutoInterfacesModels, index$b as AutoTypes, index$h as Base, type CheckSendMessageLark, index$9 as Common, type CreateAccountSocialGroupDto, type CreateAccountVPSDto, type CreateBlogDto, type CreateBlogsCategoryDto, type CreateDepartmentDto, type CreateLarkDto, type CreateManagerWorkDto, type CreatePCDto, type CreateProxyDto, type CreateRoleDto, type CreateSheetToolDto, type CreateSheetWorkDto, type CreateTaskAIContentDto, type CreateTaskAIImageCanvaInstagramDto, type CreateTaskAIImageCanvaThreadsDto, type CreateTaskAIImageVoiceCanvaInstagramDto, type CreateTaskAIImageVoiceCanvaThreadsDto, type CreateTaskInstagramBlockUserDto, type CreateTaskInstagramChangeInfoDto, type CreateTaskInstagramFollowDto, type CreateTaskInstagramInteractExploreDto, type CreateTaskInstagramInteractReelDto, type CreateTaskInstagramInteractStoryDto, type CreateTaskInstagramPostDto, type CreateTaskInstagramReplyCommentDto, type CreateTaskInstagramReplyMessageDto, type CreateTaskThreadsFollowDto, type CreateTaskThreadsPostDto, type CreateTaskThreadsReplyCommentDto, type CreateTaskThreadsReplyMessageDto, type CreateTasksJobDto, type CreateTeamDto, type CreateUserDto, EAIModelContent, EAIModelImage, EAIModelVoice, EAIVersionGPT, EAIVersionImage, EAIVersionPerplexity, EAIVersionVoice, EDeviceResetTime, EEmailTagType, EFile, EFolderImageAI, EGender, EHaveData, EInputTypeFilter, ELarkNotiAccountTool, ELarkNotiBase, ELarkNotiCreateNew, ELarkNotiDuplicateAll, ELarkNotiInstagramDetail, ELarkNotiManagerSheet, ELarkNotiRunAppDevice, ELarkNotiSocialImport, ELarkNotiToolDevice, ELarkObject, ELarkTypeNotification, EObjectName, EPositionUser, EPriority, ESheetToolInstagram, ESheetToolThreads, ESheetToolTimeCrawl, EStatusAccountAI, EStatusAccountCHPlayICloud, EStatusAccountCanva, EStatusAccountDrive, EStatusAccountSocial, EStatusAccountSocialFolderName, EStatusAccountSocialImport, EStatusAccountSocialLogin, EStatusAccountSocialLoginEmail, EStatusAccountSocialRun, EStatusAccountSocialSetting, EStatusAccountSocialSync, EStatusAccountTypeChangeInfoInstagram, EStatusAccountTypeChangeInfoThreads, EStatusAccountVPN, EStatusActive, EStatusBlog, EStatusChangeInfo, EStatusChannel, EStatusCommon, EStatusCreateNew, EStatusDeviceChangeName, EStatusDeviceChangeNew, EStatusDeviceConnectPC, EStatusDeviceConnectWifi, EStatusDeviceCurrent, EStatusDeviceHubStatus, EStatusDeviceLog, EStatusDeviceLoginCHPlayICloud, EStatusDeviceNew, EStatusDeviceOld, EStatusDeviceReplace, EStatusDeviceRunningSocial, EStatusDeviceSetupSettingTask, EStatusDeviceSync, EStatusEmail, EStatusExecuteCommon, EStatusLark, EStatusMailWork, EStatusPC, EStatusProxyChecked, EStatusProxyNewIP, EStatusRole, EStatusSheetWork, EStatusTaskAIContent, EStatusTaskAvatarCover, EStatusTaskCanva, EStatusTaskImage, EStatusTaskJob, EStatusTaskJobGroup, EStatusTaskScript, EStatusTaskToolSocials, EStatusTaskVoice, EStatusTeam, EStatusUser, EStatusVPS, EStatusVPSReplace, ETypeAccountInstagramSetting, ETypeAccountVPN, ETypeCanva, ETypeColumnManagerWork, ETypeDevice, ETypeDeviceLog, ETypeDeviceOS, ETypeExport, ETypeManagerWorkClassify, ETypeManagerWorkType, ETypePin, ETypeProviderAccountVPN, ETypeProxy, ETypeProxyChecked, ETypeProxyCountry, ETypeProxyNewIP, ETypeProxyProvider, ETypeRatioImage, ETypeSheetWorkClassify, ETypeSheetWorkPin, ETypeSocial, ETypeSocialChangeInfoThreads, ETypeSocialCreateNew, ETypeTaskID, ETypeTimeFilter, ETypeVoiceLanguage, type ExportDto, type FilterAccountAIContentChannelDto, type FilterAccountAIContentDto, type FilterAccountAIContentInfoDto, type FilterAccountAIImageChannelDto, type FilterAccountAIImageDto, type FilterAccountAIImageInfoDto, type FilterAccountAIVoiceChannelDto, type FilterAccountAIVoiceDto, type FilterAccountAIVoiceInfoDto, type FilterAccountCHPlayICloudDto, type FilterAccountCanvaDto, type FilterAccountDriveDto, type FilterAccountEmailDto, type FilterAccountSocialGroupDto, type FilterAccountVPNDto, type FilterAccountVPSDto, type FilterAccountVPSGroupDto, type FilterBaseDto, type FilterBaseSocialDto, type FilterBlogCategoryDto, type FilterBlogDto, type FilterCheckerAccountInstagramDashboardFollowerDto, type FilterCheckerAccountThreadsDashboardFollowerDto, type FilterDepartmentDto, type FilterDeviceDto, type FilterDeviceLogDto, type FilterHistoryTaskAIContentDto, type FilterHistoryTaskAIImageDto, type FilterHistoryTaskAIVoiceDto, type FilterHistoryTaskCanvaDto, type FilterInstagramAccountRawDto, type FilterInstagramAccountRunDto, type FilterInstagramDashboardFollowerDto, type FilterInstagramHistoryAutoPostDto, type FilterInstagramHistoryAutoSyncDto, type FilterInstagramHistoryBlockUserDto, type FilterInstagramHistoryChangeInfoDto, type FilterInstagramHistoryCreateNewDto, type FilterInstagramHistoryFollowDto, type FilterInstagramHistoryGroupDto, type FilterInstagramReportInteractBlockUserDto, type FilterInstagramReportInteractExploreDto, type FilterInstagramReportInteractFollowDto, type FilterInstagramReportInteractReelDto, type FilterInstagramReportInteractReplyCommentDto, type FilterInstagramReportInteractReplyMessageDto, type FilterInstagramReportInteractStoryDto, type FilterInstagramReportInteractUnFollowDto, type FilterInstagramReportPostHighLightDto, type FilterInstagramReportPostNewDto, type FilterInstagramReportPostReelDto, type FilterInstagramReportPostSquareDto, type FilterInstagramReportPostStoryDto, type FilterInstagramSettingInteractExploreDto, type FilterInstagramSettingInteractFollowDto, type FilterInstagramSettingInteractReelDto, type FilterInstagramSettingInteractReplyCommentDto, type FilterInstagramSettingInteractReplyMessageDto, type FilterInstagramSettingInteractStoryDto, type FilterInstagramSettingInteractUnFollowDto, type FilterInstagramSettingPostDto, type FilterLarkDto, type FilterManagerImageAIDto, type FilterManagerSheetDto, type FilterManagerWorkDto, type FilterPCDto, type FilterPerformanceBreakdownInstagramDashboardFollowerDto, type FilterPerformanceBreakdownThreadsDashboardFollowerDto, type FilterProxyDto, type FilterRoleDto, type FilterSheetWorkCategoryDto, type FilterSheetWorkDto, type FilterSheetsToolDto, type FilterTaskAIContentDto, type FilterTaskAIImageCanvaInstagramDto, type FilterTaskAIImageCanvaThreadsDto, type FilterTaskAIImageVoiceCanvaInstagramDto, type FilterTaskAIImageVoiceCanvaThreadsDto, type FilterTaskInstagramBlockUserDto, type FilterTaskInstagramChangeInfoDto, type FilterTaskInstagramFollowDto, type FilterTaskInstagramInteractExploreDto, type FilterTaskInstagramInteractReelDto, type FilterTaskInstagramInteractStoryDto, type FilterTaskInstagramPostDto, type FilterTaskInstagramReplyCommentDto, type FilterTaskInstagramReplyMessageDto, type FilterTaskThreadsFollowDto, type FilterTaskThreadsPostDto, type FilterTaskThreadsReplyCommentDto, type FilterTaskThreadsReplyMessageDto, type FilterTeamDto, type FilterThreadsAccountRawDto, type FilterThreadsAccountRunDto, type FilterThreadsDashboardFollowerDto, type FilterThreadsHistoryAutoPostDto, type FilterThreadsHistoryAutoSyncDto, type FilterThreadsHistoryChangeDto, type 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 FindAccountForCheckerInstagramDashboard, type FindAccountForCheckerThreadsDashboard, type FindAccountSocialGroupDto, type FindAccountVPNDto, type FindAccountVPSDto, type FindAccountVPSGroupDto, type FindAutoFillDeviceDto, type FindBlogCategoryDto, type FindBlogDto, type FindCheckerAccountInstagramDashboardFollowerDto, type FindCheckerAccountThreadsDashboardFollowerDto, type FindDepartmentDto, type FindDeviceAvailableForAddAccountVPNDto, type FindDeviceAvailableForAddCHPlayICloudDto, type FindDeviceAvailableForAddProxyDto, type FindDeviceDto, type FindDeviceLogDto, type FindForReviewDto, type FindGrowthInstagramDashboardFollowerDto, type FindGrowthThreadsDashboardFollowerDto, type FindHistoryTaskAIContentDto, type FindHistoryTaskAIImageDto, type FindHistoryTaskAIVoiceDto, type FindHistoryTaskCanvaDto, type FindInstagramAccountRawDto, type FindInstagramAccountRunDto, type FindInstagramHistoryAutoPostDto, type FindInstagramHistoryAutoSyncDto, type FindInstagramHistoryBlockUserDto, type FindInstagramHistoryChangeInfoDto, type FindInstagramHistoryCreateNewDto, type FindInstagramHistoryFollowDto, type FindInstagramHistoryGroupDto, type FindInstagramReportInteractBlockUserDto, type FindInstagramReportInteractExploreDto, type FindInstagramReportInteractFollowDto, type FindInstagramReportInteractReelDto, type FindInstagramReportInteractReplyCommentDto, type FindInstagramReportInteractReplyMessageDto, type FindInstagramReportInteractStoryDto, type FindInstagramReportInteractUnFollowDto, 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 FindMemberForAddTeamDto, type FindOverViewDepartmentDto, type FindOverViewInstagramAccountRawDto, type FindOverViewInstagramAccountRunDto, type FindOverViewInstagramReportInteractBlockUserDto, type FindOverViewInstagramReportInteractExploreDto, type FindOverViewInstagramReportInteractFollowDto, type FindOverViewInstagramReportInteractReelDto, type FindOverViewInstagramReportInteractReplyCommentDto, type FindOverViewInstagramReportInteractReplyMessageDto, type FindOverViewInstagramReportInteractStoryDto, type FindOverViewInstagramReportInteractUnFollowDto, type FindOverViewInstagramReportPostHighLightDto, type FindOverViewInstagramReportPostNewDto, type FindOverViewInstagramReportPostReelDto, type FindOverViewInstagramReportPostSquareDto, type FindOverViewInstagramReportPostStoryDto, type FindOverViewLarkDto, type FindOverViewTaskAIContentDto, type FindOverViewTaskAIImageCanvaInstagramDto, type FindOverViewTaskAIImageCanvaThreadsDto, type FindOverViewTaskAIImageVoiceCanvaInstagramDto, type FindOverViewTaskAIImageVoiceCanvaThreadsDto, type FindOverViewTaskInstagramBlockUserDto, type FindOverViewTaskInstagramChangeInfoDto, type FindOverViewTaskInstagramFollowDto, type FindOverViewTaskInstagramInteractExploreDto, type FindOverViewTaskInstagramInteractReelDto, type FindOverViewTaskInstagramInteractStoryDto, type FindOverViewTaskInstagramPostDto, type FindOverViewTaskInstagramReplyCommentDto, type FindOverViewTaskInstagramReplyMessageDto, type FindOverViewTaskThreadsFollowDto, type FindOverViewTaskThreadsPostDto, type FindOverViewTaskThreadsReplyCommentDto, type FindOverViewTaskThreadsReplyMessageDto, type FindOverViewThreadsAccountDto, type FindOverViewThreadsAccountRowDto, type FindOverViewThreadsReportInteractFollowDto, type FindOverViewThreadsReportInteractReplyCommentDto, type FindOverViewThreadsReportInteractReplyMessageDto, type FindOverViewThreadsReportPostDto, type FindOverviewAccountCHPlayICloudDto, type FindOverviewAccountCanvaDto, type FindOverviewAccountDriveDto, type FindOverviewAccountEmailDto, type FindOverviewAccountVPNDto, type FindOverviewAccountVPSDto, type FindOverviewDeviceBasicDto, type FindOverviewDeviceDetailDto, type FindOverviewDeviceLog, type FindOverviewDeviceSocialMediaAccountDto, type FindOverviewDeviceSocialMediaActiveLockedDto, type FindOverviewInstagramDashboardFollowerDto, type FindOverviewInstagramHistoryAutoPostDto, type FindOverviewInstagramHistoryAutoSyncDto, type FindOverviewInstagramHistoryBlockUserDto, type FindOverviewInstagramHistoryChangeInfoDto, type FindOverviewInstagramHistoryCreateNewDto, type FindOverviewInstagramHistoryFollowDto, type FindOverviewInstagramHistoryGroupDto, type FindOverviewProxyDto, type FindOverviewRoleDto, type FindOverviewTeamDto, type FindOverviewThreadsDashboardFollowerDto, type FindOverviewUserDto, type FindPCDto, type FindPerformanceBreakdownInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewInstagramDashboardFollowerDto, type FindPerformanceBreakdownOverviewThreadsDashboardFollowerDto, type FindPerformanceBreakdownThreadsDashboardFollowerDto, type FindProxyDto, type FindReplaceDeviceDto, type FindRoleDetailDto, type FindRoleDto, type FindRoleOfMe, type FindSheetWorkCategoryDto, type FindSheetWorkDto, type FindSheetsToolDto, type FindTaskAIContentDto, type FindTaskAIImageCanvaInstagramDto, type FindTaskAIImageCanvaThreadsDto, type FindTaskAIImageVoiceCanvaInstagramDto, type FindTaskAIImageVoiceCanvaThreadsDto, type FindTaskAvailableAIContentDto, type FindTaskInstagramBlockUserDto, type FindTaskInstagramChangeInfoDto, type FindTaskInstagramFollowDto, type FindTaskInstagramInteractExploreDto, type FindTaskInstagramInteractReelDto, type FindTaskInstagramInteractStoryDto, type FindTaskInstagramPostDto, type FindTaskInstagramReplyCommentDto, type FindTaskInstagramReplyMessageDto, type FindTaskThreadsFollowDto, type FindTaskThreadsPostDto, type FindTaskThreadsReplyCommentDto, type FindTaskThreadsReplyMessageDto, type FindTasksJobDto, type FindTeamDto, type FindThreadsAccountRawDto, type FindThreadsAccountRunDto, type FindThreadsHistoryAutoPostDto, type FindThreadsHistoryAutoSyncDto, type FindThreadsHistoryChangeDto, type FindThreadsHistoryCreateDto, type FindThreadsHistoryGroupDto, type FindThreadsReportInteractFollowDto, type FindThreadsReportInteractReplyCommentDto, type FindThreadsReportInteractReplyMessageDto, type FindThreadsReportPostDto, type FindThreadsSettingInteractFollowDto, type FindThreadsSettingInteractReplyCommentDto, type FindThreadsSettingInteractReplyMessageDto, type FindThreadsSettingInteractUnFollowDto, type FindThreadsSettingPostDto, type FindUserDto, index$8 as Forum, index$3 as History, type IAccountAIContent, type IAccountAIContentChannel, type IAccountAIContentGroup, type IAccountAIContentInfo, type IAccountAIContentMemberAssigned, type IAccountAIContentTag, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageMemberAssigned, type IAccountAIImageTag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceMemberAssigned, type IAccountAIVoiceTag, type IAccountCHPlayICloud, type IAccountCanva, type IAccountDrive, type IAccountEmail, type IAccountEmailProxy, type IAccountEmailTag, type IAccountEmailTaskWork, type IAccountSocialBase, type IAccountSocialGroup, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAccountVPSSocial, type IAuthLogin, type IAuthResetPassword, type IBaseELS, type IBaseModel, type IBaseSheetImportDto, type IBlog, type IBlogCategory, type IBlogDepartmentPermission, type IBlogTeamPermission, type IBlogUserPermission, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentMember, type IDevice, type IDeviceAccountSocialBase, type IDeviceLog, type IDeviceLogELS, type IDeviceSettingForAccount, type IDeviceSettingForCHPlayICloud, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterBaseAccountSocialDto, type IFilterBaseDto, type IFilterStore, type IFindBaseDto, type IGPMProfile, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IInstagramAccountRaw, type IInstagramAccountRun, type IInstagramDashboardFollower, type IInstagramDashboardFollowerELS, type IInstagramHistoryAutoPost, type IInstagramHistoryAutoPostELS, type IInstagramHistoryAutoSync, type IInstagramHistoryAutoSyncELS, type IInstagramHistoryBlockUser, type IInstagramHistoryBlockUserELS, type IInstagramHistoryChangeInfo, type IInstagramHistoryChangeInfoELS, type IInstagramHistoryCreateNew, type IInstagramHistoryCreateNewELS, type IInstagramHistoryFollow, type IInstagramHistoryFollowELS, type IInstagramHistoryGroup, type IInstagramHistoryGroupELS, type IInstagramReportInteractBlockUser, type IInstagramReportInteractBlockUserELS, type IInstagramReportInteractExplore, type IInstagramReportInteractExploreELS, type IInstagramReportInteractFollow, type IInstagramReportInteractFollowELS, type IInstagramReportInteractReel, type IInstagramReportInteractReelELS, type IInstagramReportInteractReplyComment, type IInstagramReportInteractReplyCommentELS, type IInstagramReportInteractReplyMessage, type IInstagramReportInteractReplyMessageELS, type IInstagramReportInteractStory, type IInstagramReportInteractStoryELS, type IInstagramReportInteractUnFollow, type IInstagramReportInteractUnFollowELS, type IInstagramReportPostHighLight, type IInstagramReportPostHighLightELS, type IInstagramReportPostNew, type IInstagramReportPostNewELS, type IInstagramReportPostReel, type IInstagramReportPostReelELS, type IInstagramReportPostSquare, type IInstagramReportPostSquareELS, type IInstagramReportPostStory, type IInstagramReportPostStoryELS, type IInstagramSettingInteractBlockUser, type IInstagramSettingInteractExplore, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReel, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, type IInstagramSettingInteractStory, type IInstagramSettingInteractUnFollow, type IInstagramSettingPost, type ILark, type ILarkTeam, type IManagerImageAI, type IManagerImageAIItemStore, type IManagerImageAIUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISheetImportSocial, type ISheetWork, type ISheetWorkDepartmentPermission, type ISheetWorkManager, type ISheetWorkUserPermission, type ISheetWorksCategory, type ISheetsTool, type ISocialTaskManager, type ITag, type ITaskAIContent, type ITaskAIImageCanvaInstagram, type ITaskAIImageCanvaThreads, type ITaskAIImageVoiceCanvaInstagram, type ITaskAIImageVoiceCanvaThreads, type ITaskAIItemAction, type ITaskAIItemGroup, type ITaskInstagramBlockUser, type ITaskInstagramChangeInfo, type ITaskInstagramFollow, type ITaskInstagramInteractExplore, type ITaskInstagramInteractReel, type ITaskInstagramInteractStory, type ITaskInstagramPost, type ITaskInstagramReplyComment, type ITaskInstagramReplyMessage, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITaskThreadsFollow, type ITaskThreadsPost, type ITaskThreadsReplyComment, type ITaskThreadsReplyMessage, type ITeam, type ITeamMember, type ITeamRole, type IThreadsAccountRaw, type IThreadsAccountRun, type IThreadsDashboardFollower, type IThreadsHistoryAutoPost, type IThreadsHistoryAutoPostELS, type IThreadsHistoryAutoSync, type IThreadsHistoryAutoSyncELS, type IThreadsHistoryChange, type IThreadsHistoryChangeInfoELS, type IThreadsHistoryCreateNew, type IThreadsHistoryCreateNewELS, type IThreadsHistoryGroup, type IThreadsHistoryGroupELS, type IThreadsReportInteractFollow, type IThreadsReportInteractFollowELS, type IThreadsReportInteractReplyComment, type IThreadsReportInteractReplyCommentELS, type IThreadsReportInteractReplyMessage, type IThreadsReportInteractReplyMessageELS, type IThreadsReportPost, type IThreadsReportPostELS, 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 ImportAccountVPSDto, type ImportDto, type ImportManagerWorkDto, type ImportSheetWorkDto, index$g as Lark, type LoadInfoDeviceSheetToolDto, type LoadInfoUrlSheetToolDto, type OverviewSheetsToolDto, type PayloadUrlSheetToolDto, index$a as Permission, type ReplaceAccountVSPDto, index$f as SheetTool, index$5 as Socials, type StatisticsManagerWorkDto, type StatisticsSheetWorkDto, index$e as Status, type TActionRole, type TCompare, type TFilter, type TPost, type TPostStyle, index$4 as Tool, index$d as Types, type UpdateAccountSocialGroupDto, type UpdateAccountVPSDto, type UpdateBlogDto, type UpdateBlogsCategoryDto, type UpdateDepartmentDto, type UpdateDeviceDto, type UpdateLarkDto, type UpdateManagerWorkDto, type UpdatePCDto, type UpdateProxyDto, type UpdateRoleDto, type UpdateSheetWorkDto, type UpdateSheetsToolDto, type UpdateTaskAIContentDto, type UpdateTaskAIImageCanvaInstagramDto, type UpdateTaskAIImageCanvaThreadsDto, type UpdateTaskAIImageVoiceCanvaInstagramDto, type UpdateTaskAIImageVoiceCanvaThreadsDto, type UpdateTaskInstagramBlockUserDto, type UpdateTaskInstagramChangeInfoDto, type UpdateTaskInstagramFollowDto, type UpdateTaskInstagramInteractExploreDto, type UpdateTaskInstagramInteractReelDto, type UpdateTaskInstagramInteractStoryDto, type UpdateTaskInstagramPostDto, type UpdateTaskInstagramReplyCommentDto, type UpdateTaskInstagramReplyMessageDto, type UpdateTaskThreadsFollowDto, type UpdateTaskThreadsPostDto, type UpdateTaskThreadsReplyCommentDto, type UpdateTaskThreadsReplyMessageDto, type UpdateTasksJobDto, type UpdateTeamDto, type UpdateUserDto, type ViewDetailDeviceDto, index$7 as Workspace };
|