automation-lib 5.4.46 → 5.4.51
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 +314 -145
- package/dist/index.d.ts +314 -145
- package/package.json +1 -1
- package/requirements.txt +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { BoInterfaceModelsCommon } from 'bodevops-be-common';
|
|
2
2
|
import { BoInterfaceModelsCommon as BoInterfaceModelsCommon$1 } from 'bodevops-be-common/dist';
|
|
3
|
-
import { AutoEnums } from 'automation-lib/dist';
|
|
4
3
|
|
|
5
4
|
declare const CONST_API_OTP: {
|
|
6
5
|
SEND: string;
|
|
@@ -2832,7 +2831,7 @@ interface CreateAccountSocialGroupDto extends Partial<IAccountSocialGroup> {
|
|
|
2832
2831
|
interface UpdateAccountSocialGroupDto extends Partial<IAccountSocialGroup> {
|
|
2833
2832
|
}
|
|
2834
2833
|
interface FindAccountSocialGroupDto extends IFindBaseDto {
|
|
2835
|
-
typeSocial:
|
|
2834
|
+
typeSocial: ETypeSocial;
|
|
2836
2835
|
name: string;
|
|
2837
2836
|
description: string;
|
|
2838
2837
|
numberAccounts: number;
|
|
@@ -5108,7 +5107,7 @@ interface AutoFillInstagramAccountRawDto {
|
|
|
5108
5107
|
};
|
|
5109
5108
|
accountID: {
|
|
5110
5109
|
id: string;
|
|
5111
|
-
val:
|
|
5110
|
+
val: string;
|
|
5112
5111
|
};
|
|
5113
5112
|
idea: string;
|
|
5114
5113
|
niche: string;
|
|
@@ -9478,6 +9477,7 @@ interface IInstagramSettingPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
9478
9477
|
delayTimeCommentTo: number;
|
|
9479
9478
|
isTimeUs: boolean;
|
|
9480
9479
|
status: EStatusActive;
|
|
9480
|
+
isAddAILable: boolean;
|
|
9481
9481
|
}
|
|
9482
9482
|
|
|
9483
9483
|
interface IInstagramReportInteractBlockUser extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
@@ -9485,10 +9485,12 @@ interface IInstagramReportInteractBlockUser extends IBaseModel, ITrackingTimeScr
|
|
|
9485
9485
|
listUserBlock: string[];
|
|
9486
9486
|
listUserRestrict: string[];
|
|
9487
9487
|
listUserHidden: string[];
|
|
9488
|
-
timeStart: Date;
|
|
9489
|
-
timeEnd: Date;
|
|
9490
9488
|
status: EStatusTaskScript;
|
|
9491
9489
|
noteFix: string;
|
|
9490
|
+
timeEnd: Date;
|
|
9491
|
+
timezone: string;
|
|
9492
|
+
listDateOfWeeks: string[];
|
|
9493
|
+
schedulePostTime: Array<string>;
|
|
9492
9494
|
}
|
|
9493
9495
|
interface IInstagramReportInteractBlockUserELS extends IBaseELS {
|
|
9494
9496
|
idea: IBaseRefFieldELS;
|
|
@@ -9499,14 +9501,20 @@ interface IInstagramReportInteractBlockUserELS extends IBaseELS {
|
|
|
9499
9501
|
key: string;
|
|
9500
9502
|
};
|
|
9501
9503
|
accountGroup: IBaseRefFieldELS;
|
|
9502
|
-
account: IBaseRefFieldELS
|
|
9504
|
+
account: IBaseRefFieldELS & {
|
|
9505
|
+
accountIDSheet: string;
|
|
9506
|
+
accountDeviceTypeAppClone: string;
|
|
9507
|
+
accountDeviceNameAppClone: string;
|
|
9508
|
+
};
|
|
9503
9509
|
listUserBlock: string[];
|
|
9504
9510
|
listUserRestrict: string[];
|
|
9505
9511
|
listUserHidden: string[];
|
|
9506
|
-
timeStart: Date;
|
|
9507
|
-
timeEnd: Date;
|
|
9508
9512
|
status: EStatusTaskScript;
|
|
9509
9513
|
noteFix: string;
|
|
9514
|
+
timeEnd: Date;
|
|
9515
|
+
timezone: string;
|
|
9516
|
+
listDateOfWeeks: string[];
|
|
9517
|
+
schedulePostTime: Array<string>;
|
|
9510
9518
|
}
|
|
9511
9519
|
|
|
9512
9520
|
interface IInstagramReportInteractExplore extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
@@ -9515,10 +9523,12 @@ interface IInstagramReportInteractExplore extends IBaseModel, ITrackingTimeScrip
|
|
|
9515
9523
|
numberLike: number;
|
|
9516
9524
|
minutesExecute: number;
|
|
9517
9525
|
isLike: boolean;
|
|
9518
|
-
timeStart: Date;
|
|
9519
|
-
timeEnd: Date;
|
|
9520
9526
|
status: EStatusTaskScript;
|
|
9521
9527
|
noteFix: string;
|
|
9528
|
+
timeEnd: Date;
|
|
9529
|
+
timezone: string;
|
|
9530
|
+
listDateOfWeeks: string[];
|
|
9531
|
+
schedulePostTime: Array<string>;
|
|
9522
9532
|
}
|
|
9523
9533
|
interface IInstagramReportInteractExploreELS extends IBaseELS {
|
|
9524
9534
|
idea: IBaseRefFieldELS;
|
|
@@ -9529,15 +9539,21 @@ interface IInstagramReportInteractExploreELS extends IBaseELS {
|
|
|
9529
9539
|
key: string;
|
|
9530
9540
|
};
|
|
9531
9541
|
accountGroup: IBaseRefFieldELS;
|
|
9532
|
-
account: IBaseRefFieldELS
|
|
9542
|
+
account: IBaseRefFieldELS & {
|
|
9543
|
+
accountIDSheet: string;
|
|
9544
|
+
accountDeviceTypeAppClone: string;
|
|
9545
|
+
accountDeviceNameAppClone: string;
|
|
9546
|
+
};
|
|
9533
9547
|
typeView: string;
|
|
9534
9548
|
numberLike: number;
|
|
9535
9549
|
minutesExecute: number;
|
|
9536
9550
|
isLike: boolean;
|
|
9537
|
-
timeStart: Date;
|
|
9538
|
-
timeEnd: Date;
|
|
9539
9551
|
status: EStatusTaskScript;
|
|
9540
9552
|
noteFix: string;
|
|
9553
|
+
timeEnd: Date;
|
|
9554
|
+
timezone: string;
|
|
9555
|
+
listDateOfWeeks: string[];
|
|
9556
|
+
schedulePostTime: Array<string>;
|
|
9541
9557
|
}
|
|
9542
9558
|
|
|
9543
9559
|
interface IInstagramReportInteractFollow extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
@@ -9547,10 +9563,12 @@ interface IInstagramReportInteractFollow extends IBaseModel, ITrackingTimeScript
|
|
|
9547
9563
|
listUsersFollow: Array<string>;
|
|
9548
9564
|
follower: number;
|
|
9549
9565
|
following: number;
|
|
9550
|
-
timeStart: Date;
|
|
9551
|
-
timeEnd: Date;
|
|
9552
9566
|
status: EStatusTaskScript;
|
|
9553
9567
|
noteFix: string;
|
|
9568
|
+
timeEnd: Date;
|
|
9569
|
+
timezone: string;
|
|
9570
|
+
listDateOfWeeks: string[];
|
|
9571
|
+
schedulePostTime: Array<string>;
|
|
9554
9572
|
}
|
|
9555
9573
|
interface IInstagramReportInteractFollowELS extends IBaseELS {
|
|
9556
9574
|
idea: IBaseRefFieldELS;
|
|
@@ -9561,16 +9579,22 @@ interface IInstagramReportInteractFollowELS extends IBaseELS {
|
|
|
9561
9579
|
key: string;
|
|
9562
9580
|
};
|
|
9563
9581
|
accountGroup: IBaseRefFieldELS;
|
|
9564
|
-
account: IBaseRefFieldELS
|
|
9582
|
+
account: IBaseRefFieldELS & {
|
|
9583
|
+
accountIDSheet: string;
|
|
9584
|
+
accountDeviceTypeAppClone: string;
|
|
9585
|
+
accountDeviceNameAppClone: string;
|
|
9586
|
+
};
|
|
9565
9587
|
sheetName: string;
|
|
9566
9588
|
sheetUrl: string;
|
|
9567
9589
|
listUsersFollow: Array<string>;
|
|
9568
9590
|
follower: number;
|
|
9569
9591
|
following: number;
|
|
9570
|
-
timeStart: Date;
|
|
9571
|
-
timeEnd: Date;
|
|
9572
9592
|
status: EStatusTaskScript;
|
|
9573
9593
|
noteFix: string;
|
|
9594
|
+
timeEnd: Date;
|
|
9595
|
+
timezone: string;
|
|
9596
|
+
listDateOfWeeks: string[];
|
|
9597
|
+
schedulePostTime: Array<string>;
|
|
9574
9598
|
}
|
|
9575
9599
|
|
|
9576
9600
|
interface IInstagramReportInteractReel extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
@@ -9578,10 +9602,12 @@ interface IInstagramReportInteractReel extends IBaseModel, ITrackingTimeScript,
|
|
|
9578
9602
|
numberLike: number;
|
|
9579
9603
|
minutesExecute: number;
|
|
9580
9604
|
isLike: boolean;
|
|
9581
|
-
timeStart: Date;
|
|
9582
|
-
timeEnd: Date;
|
|
9583
9605
|
status: EStatusTaskScript;
|
|
9584
9606
|
noteFix: string;
|
|
9607
|
+
timeEnd: Date;
|
|
9608
|
+
timezone: string;
|
|
9609
|
+
listDateOfWeeks: string[];
|
|
9610
|
+
schedulePostTime: Array<string>;
|
|
9585
9611
|
}
|
|
9586
9612
|
interface IInstagramReportInteractReelELS extends IBaseELS {
|
|
9587
9613
|
idea: IBaseRefFieldELS;
|
|
@@ -9592,14 +9618,20 @@ interface IInstagramReportInteractReelELS extends IBaseELS {
|
|
|
9592
9618
|
key: string;
|
|
9593
9619
|
};
|
|
9594
9620
|
accountGroup: IBaseRefFieldELS;
|
|
9595
|
-
account: IBaseRefFieldELS
|
|
9621
|
+
account: IBaseRefFieldELS & {
|
|
9622
|
+
accountIDSheet: string;
|
|
9623
|
+
accountDeviceTypeAppClone: string;
|
|
9624
|
+
accountDeviceNameAppClone: string;
|
|
9625
|
+
};
|
|
9596
9626
|
numberLike: number;
|
|
9597
9627
|
minutesExecute: number;
|
|
9598
9628
|
isLike: boolean;
|
|
9599
|
-
timeStart: Date;
|
|
9600
|
-
timeEnd: Date;
|
|
9601
9629
|
status: EStatusTaskScript;
|
|
9602
9630
|
noteFix: string;
|
|
9631
|
+
timeEnd: Date;
|
|
9632
|
+
timezone: string;
|
|
9633
|
+
listDateOfWeeks: string[];
|
|
9634
|
+
schedulePostTime: Array<string>;
|
|
9603
9635
|
}
|
|
9604
9636
|
|
|
9605
9637
|
interface IInstagramReportInteractReplyComment extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
@@ -9610,10 +9642,12 @@ interface IInstagramReportInteractReplyComment extends IBaseModel, ITrackingTime
|
|
|
9610
9642
|
userLink: string;
|
|
9611
9643
|
linkPost: string;
|
|
9612
9644
|
commentReplied: string;
|
|
9613
|
-
timeStart: Date;
|
|
9614
|
-
timeEnd: Date;
|
|
9615
9645
|
status: EStatusTaskScript;
|
|
9616
9646
|
noteFix: string;
|
|
9647
|
+
timeEnd: Date;
|
|
9648
|
+
timezone: string;
|
|
9649
|
+
listDateOfWeeks: string[];
|
|
9650
|
+
schedulePostTime: Array<string>;
|
|
9617
9651
|
}
|
|
9618
9652
|
interface IInstagramReportInteractReplyCommentELS extends IBaseELS {
|
|
9619
9653
|
idea: IBaseRefFieldELS;
|
|
@@ -9624,17 +9658,23 @@ interface IInstagramReportInteractReplyCommentELS extends IBaseELS {
|
|
|
9624
9658
|
key: string;
|
|
9625
9659
|
};
|
|
9626
9660
|
accountGroup: IBaseRefFieldELS;
|
|
9627
|
-
account: IBaseRefFieldELS
|
|
9661
|
+
account: IBaseRefFieldELS & {
|
|
9662
|
+
accountIDSheet: string;
|
|
9663
|
+
accountDeviceTypeAppClone: string;
|
|
9664
|
+
accountDeviceNameAppClone: string;
|
|
9665
|
+
};
|
|
9628
9666
|
sheetName: string;
|
|
9629
9667
|
sheetUrl: string;
|
|
9630
9668
|
content: string;
|
|
9631
9669
|
userLink: string;
|
|
9632
9670
|
linkPost: string;
|
|
9633
9671
|
commentReplied: string;
|
|
9634
|
-
timeStart: Date;
|
|
9635
|
-
timeEnd: Date;
|
|
9636
9672
|
status: EStatusTaskScript;
|
|
9637
9673
|
noteFix: string;
|
|
9674
|
+
timeEnd: Date;
|
|
9675
|
+
timezone: string;
|
|
9676
|
+
listDateOfWeeks: string[];
|
|
9677
|
+
schedulePostTime: Array<string>;
|
|
9638
9678
|
}
|
|
9639
9679
|
|
|
9640
9680
|
interface IInstagramReportInteractReplyMessage extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
@@ -9643,10 +9683,12 @@ interface IInstagramReportInteractReplyMessage extends IBaseModel, ITrackingTime
|
|
|
9643
9683
|
sheetUrl: string;
|
|
9644
9684
|
receiverName: string;
|
|
9645
9685
|
messageReply: string;
|
|
9646
|
-
timeStart: Date;
|
|
9647
|
-
timeEnd: Date;
|
|
9648
9686
|
status: EStatusTaskScript;
|
|
9649
9687
|
noteFix: string;
|
|
9688
|
+
timeEnd: Date;
|
|
9689
|
+
timezone: string;
|
|
9690
|
+
listDateOfWeeks: string[];
|
|
9691
|
+
schedulePostTime: Array<string>;
|
|
9650
9692
|
}
|
|
9651
9693
|
interface IInstagramReportInteractReplyMessageELS extends IBaseELS {
|
|
9652
9694
|
idea: IBaseRefFieldELS;
|
|
@@ -9657,15 +9699,21 @@ interface IInstagramReportInteractReplyMessageELS extends IBaseELS {
|
|
|
9657
9699
|
key: string;
|
|
9658
9700
|
};
|
|
9659
9701
|
accountGroup: IBaseRefFieldELS;
|
|
9660
|
-
account: IBaseRefFieldELS
|
|
9702
|
+
account: IBaseRefFieldELS & {
|
|
9703
|
+
accountIDSheet: string;
|
|
9704
|
+
accountDeviceTypeAppClone: string;
|
|
9705
|
+
accountDeviceNameAppClone: string;
|
|
9706
|
+
};
|
|
9661
9707
|
sheetName: string;
|
|
9662
9708
|
sheetUrl: string;
|
|
9663
9709
|
receiverName: string;
|
|
9664
9710
|
messageReply: string;
|
|
9665
|
-
timeStart: Date;
|
|
9666
|
-
timeEnd: Date;
|
|
9667
9711
|
status: EStatusTaskScript;
|
|
9668
9712
|
noteFix: string;
|
|
9713
|
+
timeEnd: Date;
|
|
9714
|
+
timezone: string;
|
|
9715
|
+
listDateOfWeeks: string[];
|
|
9716
|
+
schedulePostTime: Array<string>;
|
|
9669
9717
|
}
|
|
9670
9718
|
|
|
9671
9719
|
interface IInstagramReportInteractStory extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
@@ -9675,10 +9723,12 @@ interface IInstagramReportInteractStory extends IBaseModel, ITrackingTimeScript,
|
|
|
9675
9723
|
numberUsersSentMess: number;
|
|
9676
9724
|
isLike: boolean;
|
|
9677
9725
|
isSentMessage: boolean;
|
|
9678
|
-
timeStart: Date;
|
|
9679
|
-
timeEnd: Date;
|
|
9680
9726
|
status: EStatusTaskScript;
|
|
9681
9727
|
noteFix: string;
|
|
9728
|
+
timeEnd: Date;
|
|
9729
|
+
timezone: string;
|
|
9730
|
+
listDateOfWeeks: string[];
|
|
9731
|
+
schedulePostTime: Array<string>;
|
|
9682
9732
|
}
|
|
9683
9733
|
interface IInstagramReportInteractStoryELS extends IBaseELS {
|
|
9684
9734
|
idea: IBaseRefFieldELS;
|
|
@@ -9689,16 +9739,22 @@ interface IInstagramReportInteractStoryELS extends IBaseELS {
|
|
|
9689
9739
|
key: string;
|
|
9690
9740
|
};
|
|
9691
9741
|
accountGroup: IBaseRefFieldELS;
|
|
9692
|
-
account: IBaseRefFieldELS
|
|
9742
|
+
account: IBaseRefFieldELS & {
|
|
9743
|
+
accountIDSheet: string;
|
|
9744
|
+
accountDeviceTypeAppClone: string;
|
|
9745
|
+
accountDeviceNameAppClone: string;
|
|
9746
|
+
};
|
|
9693
9747
|
numberLike: number;
|
|
9694
9748
|
minutesExecute: number;
|
|
9695
9749
|
numberUsersSentMess: number;
|
|
9696
9750
|
isLike: boolean;
|
|
9697
9751
|
isSentMessage: boolean;
|
|
9698
|
-
timeStart: Date;
|
|
9699
|
-
timeEnd: Date;
|
|
9700
9752
|
status: EStatusTaskScript;
|
|
9701
9753
|
noteFix: string;
|
|
9754
|
+
timeEnd: Date;
|
|
9755
|
+
timezone: string;
|
|
9756
|
+
listDateOfWeeks: string[];
|
|
9757
|
+
schedulePostTime: Array<string>;
|
|
9702
9758
|
}
|
|
9703
9759
|
|
|
9704
9760
|
interface IInstagramReportInteractUnFollow extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
@@ -9708,10 +9764,12 @@ interface IInstagramReportInteractUnFollow extends IBaseModel, ITrackingTimeScri
|
|
|
9708
9764
|
listUsersUnFollow: Array<string>;
|
|
9709
9765
|
follower: number;
|
|
9710
9766
|
following: number;
|
|
9711
|
-
timeStart: Date;
|
|
9712
|
-
timeEnd: Date;
|
|
9713
9767
|
status: EStatusTaskScript;
|
|
9714
9768
|
noteFix: string;
|
|
9769
|
+
timeEnd: Date;
|
|
9770
|
+
timezone: string;
|
|
9771
|
+
listDateOfWeeks: string[];
|
|
9772
|
+
schedulePostTime: Array<string>;
|
|
9715
9773
|
}
|
|
9716
9774
|
interface IInstagramReportInteractUnFollowELS extends IBaseELS {
|
|
9717
9775
|
idea: IBaseRefFieldELS;
|
|
@@ -9722,29 +9780,40 @@ interface IInstagramReportInteractUnFollowELS extends IBaseELS {
|
|
|
9722
9780
|
key: string;
|
|
9723
9781
|
};
|
|
9724
9782
|
accountGroup: IBaseRefFieldELS;
|
|
9725
|
-
account: IBaseRefFieldELS
|
|
9783
|
+
account: IBaseRefFieldELS & {
|
|
9784
|
+
accountIDSheet: string;
|
|
9785
|
+
accountDeviceTypeAppClone: string;
|
|
9786
|
+
accountDeviceNameAppClone: string;
|
|
9787
|
+
};
|
|
9726
9788
|
sheetName: string;
|
|
9727
9789
|
sheetUrl: string;
|
|
9728
9790
|
listUsersUnFollow: Array<string>;
|
|
9729
9791
|
follower: number;
|
|
9730
9792
|
following: number;
|
|
9731
|
-
timeStart: Date;
|
|
9732
|
-
timeEnd: Date;
|
|
9733
9793
|
status: EStatusTaskScript;
|
|
9734
9794
|
noteFix: string;
|
|
9795
|
+
timeEnd: Date;
|
|
9796
|
+
timezone: string;
|
|
9797
|
+
listDateOfWeeks: string[];
|
|
9798
|
+
schedulePostTime: Array<string>;
|
|
9735
9799
|
}
|
|
9736
9800
|
|
|
9737
9801
|
interface IInstagramReportPostHighLight extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
9738
9802
|
account: string | IInstagramAccountRaw;
|
|
9739
9803
|
sheetUrl: string;
|
|
9740
9804
|
sheetName: string;
|
|
9741
|
-
sheetPageName: string;
|
|
9742
9805
|
rowId: string;
|
|
9743
|
-
historyName: string;
|
|
9744
9806
|
timeStart: Date;
|
|
9745
9807
|
timeEnd: Date;
|
|
9808
|
+
timezone: string;
|
|
9809
|
+
listDateOfWeeks: string[];
|
|
9810
|
+
schedulePostTime: Array<string>;
|
|
9811
|
+
sttAccount: string;
|
|
9746
9812
|
status: EStatusTaskScript;
|
|
9747
9813
|
noteFix: string;
|
|
9814
|
+
typePost: string;
|
|
9815
|
+
stylePost: string;
|
|
9816
|
+
historyName: string;
|
|
9748
9817
|
}
|
|
9749
9818
|
interface IInstagramReportPostHighLightELS extends IBaseELS {
|
|
9750
9819
|
idea: IBaseRefFieldELS;
|
|
@@ -9754,38 +9823,56 @@ interface IInstagramReportPostHighLightELS extends IBaseELS {
|
|
|
9754
9823
|
device: IBaseRefFieldELS & {
|
|
9755
9824
|
key: string;
|
|
9756
9825
|
};
|
|
9757
|
-
|
|
9758
|
-
|
|
9826
|
+
account: IBaseRefFieldELS & {
|
|
9827
|
+
accountIDSheet: string;
|
|
9828
|
+
accountDeviceTypeAppClone: string;
|
|
9829
|
+
accountDeviceNameAppClone: string;
|
|
9830
|
+
};
|
|
9759
9831
|
sheetUrl: string;
|
|
9760
9832
|
sheetName: string;
|
|
9761
|
-
link: string;
|
|
9762
9833
|
rowId: string;
|
|
9763
|
-
historyName: string;
|
|
9764
9834
|
timeStart: Date;
|
|
9765
9835
|
timeEnd: Date;
|
|
9836
|
+
timezone: string;
|
|
9837
|
+
listDateOfWeeks: string[];
|
|
9838
|
+
schedulePostTime: Array<string>;
|
|
9839
|
+
sttAccount: string;
|
|
9766
9840
|
status: EStatusTaskScript;
|
|
9767
9841
|
noteFix: string;
|
|
9842
|
+
typePost: string;
|
|
9843
|
+
stylePost: string;
|
|
9844
|
+
historyName: string;
|
|
9768
9845
|
}
|
|
9769
9846
|
|
|
9770
9847
|
interface IInstagramReportPostNew extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
9771
9848
|
account: string | IInstagramAccountRaw;
|
|
9772
9849
|
sheetUrl: string;
|
|
9773
9850
|
sheetName: string;
|
|
9774
|
-
sheetPageName: string;
|
|
9775
9851
|
rowId: string;
|
|
9776
|
-
|
|
9852
|
+
timeStart: Date;
|
|
9853
|
+
timeEnd: Date;
|
|
9854
|
+
timezone: string;
|
|
9855
|
+
listDateOfWeeks: string[];
|
|
9856
|
+
schedulePostTime: Array<string>;
|
|
9857
|
+
sttAccount: string;
|
|
9858
|
+
status: EStatusTaskScript;
|
|
9859
|
+
noteFix: string;
|
|
9860
|
+
typePost: string;
|
|
9861
|
+
stylePost: string;
|
|
9777
9862
|
photosUrl: string[];
|
|
9778
9863
|
videosUrl: string[];
|
|
9779
|
-
collaborator: string;
|
|
9780
9864
|
content: string;
|
|
9781
9865
|
music: string;
|
|
9782
|
-
tagUser: string;
|
|
9783
9866
|
location: string;
|
|
9784
|
-
|
|
9785
|
-
|
|
9786
|
-
|
|
9787
|
-
|
|
9788
|
-
|
|
9867
|
+
urlPost: string;
|
|
9868
|
+
listTagsUsername: string[];
|
|
9869
|
+
listTagsCollaborator: string[];
|
|
9870
|
+
isAddAILable: boolean;
|
|
9871
|
+
cmtPost: string;
|
|
9872
|
+
cmtStickerPostMe: string;
|
|
9873
|
+
tagUserPostMe: string;
|
|
9874
|
+
isSuggestFB: string;
|
|
9875
|
+
idPostToSheet: string;
|
|
9789
9876
|
}
|
|
9790
9877
|
interface IInstagramReportPostNewELS extends IBaseELS {
|
|
9791
9878
|
idea: IBaseRefFieldELS;
|
|
@@ -9796,45 +9883,69 @@ interface IInstagramReportPostNewELS extends IBaseELS {
|
|
|
9796
9883
|
key: string;
|
|
9797
9884
|
};
|
|
9798
9885
|
accountGroup: IBaseRefFieldELS;
|
|
9799
|
-
account: IBaseRefFieldELS
|
|
9886
|
+
account: IBaseRefFieldELS & {
|
|
9887
|
+
accountIDSheet: string;
|
|
9888
|
+
accountDeviceTypeAppClone: string;
|
|
9889
|
+
accountDeviceNameAppClone: string;
|
|
9890
|
+
};
|
|
9800
9891
|
sheetUrl: string;
|
|
9801
9892
|
sheetName: string;
|
|
9802
|
-
sheetPageName: string;
|
|
9803
9893
|
rowId: string;
|
|
9804
|
-
|
|
9894
|
+
timeStart: Date;
|
|
9895
|
+
timeEnd: Date;
|
|
9896
|
+
timezone: string;
|
|
9897
|
+
listDateOfWeeks: string[];
|
|
9898
|
+
schedulePostTime: Array<string>;
|
|
9899
|
+
sttAccount: string;
|
|
9900
|
+
status: EStatusTaskScript;
|
|
9901
|
+
noteFix: string;
|
|
9902
|
+
typePost: string;
|
|
9903
|
+
stylePost: string;
|
|
9805
9904
|
photosUrl: string[];
|
|
9806
9905
|
videosUrl: string[];
|
|
9807
|
-
collaborator: string;
|
|
9808
9906
|
content: string;
|
|
9809
9907
|
music: string;
|
|
9810
|
-
tagUser: string;
|
|
9811
9908
|
location: string;
|
|
9812
|
-
|
|
9813
|
-
|
|
9814
|
-
|
|
9815
|
-
|
|
9816
|
-
|
|
9909
|
+
urlPost: string;
|
|
9910
|
+
listTagsUsername: string[];
|
|
9911
|
+
listTagsCollaborator: string[];
|
|
9912
|
+
isAddAILable: boolean;
|
|
9913
|
+
cmtPost: string;
|
|
9914
|
+
cmtStickerPostMe: string;
|
|
9915
|
+
tagUserPostMe: string;
|
|
9916
|
+
isSuggestFB: string;
|
|
9917
|
+
idPostToSheet: string;
|
|
9817
9918
|
}
|
|
9818
9919
|
|
|
9819
9920
|
interface IInstagramReportPostSquare extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
9820
9921
|
account: string | IInstagramAccountRaw;
|
|
9821
9922
|
sheetUrl: string;
|
|
9822
9923
|
sheetName: string;
|
|
9823
|
-
sheetPageName: string;
|
|
9824
9924
|
rowId: string;
|
|
9825
|
-
|
|
9925
|
+
timeStart: Date;
|
|
9926
|
+
timeEnd: Date;
|
|
9927
|
+
timezone: string;
|
|
9928
|
+
listDateOfWeeks: string[];
|
|
9929
|
+
schedulePostTime: Array<string>;
|
|
9930
|
+
sttAccount: string;
|
|
9931
|
+
status: EStatusTaskScript;
|
|
9932
|
+
noteFix: string;
|
|
9933
|
+
typePost: string;
|
|
9934
|
+
stylePost: string;
|
|
9826
9935
|
photosUrl: string[];
|
|
9827
9936
|
videosUrl: string[];
|
|
9828
|
-
collaborator: string;
|
|
9829
9937
|
content: string;
|
|
9830
9938
|
music: string;
|
|
9831
|
-
tagUser: string;
|
|
9832
9939
|
location: string;
|
|
9833
|
-
|
|
9834
|
-
|
|
9835
|
-
|
|
9836
|
-
|
|
9837
|
-
|
|
9940
|
+
urlPost: string;
|
|
9941
|
+
listTagsUsername: string[];
|
|
9942
|
+
listTagsCollaborator: string[];
|
|
9943
|
+
isAddAILable: boolean;
|
|
9944
|
+
cmtPost: string;
|
|
9945
|
+
cmtStickerPostMe: string;
|
|
9946
|
+
tagUserPostMe: string;
|
|
9947
|
+
isSuggestFB: string;
|
|
9948
|
+
idPostToSheet: string;
|
|
9838
9949
|
}
|
|
9839
9950
|
interface IInstagramReportPostSquareELS extends IBaseELS {
|
|
9840
9951
|
idea: IBaseRefFieldELS;
|
|
@@ -9845,47 +9956,63 @@ interface IInstagramReportPostSquareELS extends IBaseELS {
|
|
|
9845
9956
|
key: string;
|
|
9846
9957
|
};
|
|
9847
9958
|
accountGroup: IBaseRefFieldELS;
|
|
9848
|
-
account: IBaseRefFieldELS
|
|
9959
|
+
account: IBaseRefFieldELS & {
|
|
9960
|
+
accountIDSheet: string;
|
|
9961
|
+
accountDeviceTypeAppClone: string;
|
|
9962
|
+
accountDeviceNameAppClone: string;
|
|
9963
|
+
};
|
|
9849
9964
|
sheetUrl: string;
|
|
9850
9965
|
sheetName: string;
|
|
9851
|
-
sheetPageName: string;
|
|
9852
9966
|
rowId: string;
|
|
9853
|
-
|
|
9967
|
+
timeStart: Date;
|
|
9968
|
+
timeEnd: Date;
|
|
9969
|
+
timezone: string;
|
|
9970
|
+
listDateOfWeeks: string[];
|
|
9971
|
+
schedulePostTime: Array<string>;
|
|
9972
|
+
sttAccount: string;
|
|
9973
|
+
status: EStatusTaskScript;
|
|
9974
|
+
noteFix: string;
|
|
9975
|
+
typePost: string;
|
|
9976
|
+
stylePost: string;
|
|
9854
9977
|
photosUrl: string[];
|
|
9855
9978
|
videosUrl: string[];
|
|
9856
|
-
collaborator: string;
|
|
9857
9979
|
content: string;
|
|
9858
9980
|
music: string;
|
|
9859
|
-
tagUser: string;
|
|
9860
9981
|
location: string;
|
|
9861
|
-
|
|
9862
|
-
|
|
9863
|
-
|
|
9864
|
-
|
|
9865
|
-
|
|
9982
|
+
urlPost: string;
|
|
9983
|
+
listTagsCollaborator: string[];
|
|
9984
|
+
listTagsUsername: string[];
|
|
9985
|
+
isAddAILable: boolean;
|
|
9986
|
+
cmtPost: string;
|
|
9987
|
+
cmtStickerPostMe: string;
|
|
9988
|
+
tagUserPostMe: string;
|
|
9989
|
+
isSuggestFB: string;
|
|
9990
|
+
idPostToSheet: string;
|
|
9866
9991
|
}
|
|
9867
9992
|
|
|
9868
9993
|
interface IInstagramReportPostReel extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
9869
9994
|
account: string | IInstagramAccountRaw;
|
|
9870
9995
|
sheetUrl: string;
|
|
9871
9996
|
sheetName: string;
|
|
9872
|
-
sheetPageName: string;
|
|
9873
9997
|
rowId: string;
|
|
9874
|
-
|
|
9998
|
+
timeStart: Date;
|
|
9999
|
+
timeEnd: Date;
|
|
10000
|
+
timezone: string;
|
|
10001
|
+
listDateOfWeeks: string[];
|
|
10002
|
+
schedulePostTime: Array<string>;
|
|
10003
|
+
sttAccount: string;
|
|
10004
|
+
status: EStatusTaskScript;
|
|
10005
|
+
noteFix: string;
|
|
10006
|
+
typePost: string;
|
|
10007
|
+
stylePost: string;
|
|
9875
10008
|
photosUrl: string[];
|
|
9876
10009
|
videosUrl: string[];
|
|
9877
|
-
titlePoll: string;
|
|
9878
|
-
polls: string[];
|
|
9879
10010
|
location: string;
|
|
9880
10011
|
music: string;
|
|
9881
10012
|
content: string;
|
|
9882
|
-
|
|
9883
|
-
|
|
9884
|
-
|
|
9885
|
-
timeStart: Date;
|
|
9886
|
-
timeEnd: Date;
|
|
9887
|
-
status: EStatusTaskScript;
|
|
9888
|
-
noteFix: string;
|
|
10013
|
+
listTagsCollaborator: string[];
|
|
10014
|
+
listTagsUsername: string[];
|
|
10015
|
+
urlPost: string;
|
|
9889
10016
|
}
|
|
9890
10017
|
interface IInstagramReportPostReelELS extends IBaseELS {
|
|
9891
10018
|
idea: IBaseRefFieldELS;
|
|
@@ -9896,43 +10023,55 @@ interface IInstagramReportPostReelELS extends IBaseELS {
|
|
|
9896
10023
|
key: string;
|
|
9897
10024
|
};
|
|
9898
10025
|
accountGroup: IBaseRefFieldELS;
|
|
9899
|
-
account: IBaseRefFieldELS
|
|
10026
|
+
account: IBaseRefFieldELS & {
|
|
10027
|
+
accountIDSheet: string;
|
|
10028
|
+
accountDeviceTypeAppClone: string;
|
|
10029
|
+
accountDeviceNameAppClone: string;
|
|
10030
|
+
};
|
|
9900
10031
|
sheetUrl: string;
|
|
9901
10032
|
sheetName: string;
|
|
9902
|
-
sheetPageName: string;
|
|
9903
10033
|
rowId: string;
|
|
9904
|
-
|
|
10034
|
+
timeStart: Date;
|
|
10035
|
+
timeEnd: Date;
|
|
10036
|
+
timezone: string;
|
|
10037
|
+
listDateOfWeeks: string[];
|
|
10038
|
+
schedulePostTime: Array<string>;
|
|
10039
|
+
sttAccount: string;
|
|
10040
|
+
status: EStatusTaskScript;
|
|
10041
|
+
noteFix: string;
|
|
10042
|
+
typePost: string;
|
|
10043
|
+
stylePost: string;
|
|
9905
10044
|
photosUrl: string[];
|
|
9906
10045
|
videosUrl: string[];
|
|
9907
|
-
titlePoll: string;
|
|
9908
|
-
polls: string[];
|
|
9909
10046
|
location: string;
|
|
9910
10047
|
music: string;
|
|
9911
10048
|
content: string;
|
|
9912
|
-
|
|
9913
|
-
|
|
9914
|
-
|
|
9915
|
-
timeStart: Date;
|
|
9916
|
-
timeEnd: Date;
|
|
9917
|
-
status: EStatusTaskScript;
|
|
9918
|
-
noteFix: string;
|
|
10049
|
+
urlPost: string;
|
|
10050
|
+
listTagsCollaborator: string[];
|
|
10051
|
+
listTagsUsername: string[];
|
|
9919
10052
|
}
|
|
9920
10053
|
|
|
9921
10054
|
interface IInstagramReportPostStory extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
9922
10055
|
account: string | IInstagramAccountRaw;
|
|
9923
10056
|
sheetUrl: string;
|
|
9924
10057
|
sheetName: string;
|
|
9925
|
-
sheetPageName: string;
|
|
9926
10058
|
rowId: string;
|
|
9927
|
-
otherAccount: string;
|
|
9928
|
-
photosUrl: string[];
|
|
9929
|
-
videosUrl: string[];
|
|
9930
|
-
music: string;
|
|
9931
|
-
location: string;
|
|
9932
10059
|
timeStart: Date;
|
|
9933
10060
|
timeEnd: Date;
|
|
10061
|
+
timezone: string;
|
|
10062
|
+
listDateOfWeeks: string[];
|
|
10063
|
+
schedulePostTime: Array<string>;
|
|
10064
|
+
sttAccount: string;
|
|
9934
10065
|
status: EStatusTaskScript;
|
|
9935
10066
|
noteFix: string;
|
|
10067
|
+
typePost: string;
|
|
10068
|
+
stylePost: string;
|
|
10069
|
+
photosUrl: string[];
|
|
10070
|
+
videosUrl: string[];
|
|
10071
|
+
music: string;
|
|
10072
|
+
location: string;
|
|
10073
|
+
listTagsUsername: string[];
|
|
10074
|
+
listTagsCollaborator: string[];
|
|
9936
10075
|
}
|
|
9937
10076
|
interface IInstagramReportPostStoryELS extends IBaseELS {
|
|
9938
10077
|
idea: IBaseRefFieldELS;
|
|
@@ -9943,20 +10082,30 @@ interface IInstagramReportPostStoryELS extends IBaseELS {
|
|
|
9943
10082
|
key: string;
|
|
9944
10083
|
};
|
|
9945
10084
|
accountGroup: IBaseRefFieldELS;
|
|
9946
|
-
account: IBaseRefFieldELS
|
|
10085
|
+
account: IBaseRefFieldELS & {
|
|
10086
|
+
accountIDSheet: string;
|
|
10087
|
+
accountDeviceTypeAppClone: string;
|
|
10088
|
+
accountDeviceNameAppClone: string;
|
|
10089
|
+
};
|
|
9947
10090
|
sheetUrl: string;
|
|
9948
10091
|
sheetName: string;
|
|
9949
|
-
sheetPageName: string;
|
|
9950
10092
|
rowId: string;
|
|
9951
|
-
otherAccount: string;
|
|
9952
|
-
photosUrl: string[];
|
|
9953
|
-
videosUrl: string[];
|
|
9954
|
-
music: string;
|
|
9955
|
-
location: string;
|
|
9956
10093
|
timeStart: Date;
|
|
9957
10094
|
timeEnd: Date;
|
|
10095
|
+
timezone: string;
|
|
10096
|
+
listDateOfWeeks: string[];
|
|
10097
|
+
schedulePostTime: Array<string>;
|
|
10098
|
+
sttAccount: string;
|
|
9958
10099
|
status: EStatusTaskScript;
|
|
9959
10100
|
noteFix: string;
|
|
10101
|
+
typePost: string;
|
|
10102
|
+
stylePost: string;
|
|
10103
|
+
photosUrl: string[];
|
|
10104
|
+
videosUrl: string[];
|
|
10105
|
+
music: string;
|
|
10106
|
+
location: string;
|
|
10107
|
+
listTagsUsername: string[];
|
|
10108
|
+
listTagsCollaborator: string[];
|
|
9960
10109
|
}
|
|
9961
10110
|
|
|
9962
10111
|
interface ITaskInstagramBlockUser extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -10665,17 +10814,19 @@ interface IThreadsReportPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
10665
10814
|
photosUrl: string[];
|
|
10666
10815
|
videosUrl: string[];
|
|
10667
10816
|
titleContent: string;
|
|
10668
|
-
|
|
10817
|
+
listTagsUsername: string[];
|
|
10669
10818
|
content: string;
|
|
10670
10819
|
caption: string;
|
|
10671
10820
|
hashtag: string;
|
|
10672
10821
|
altNicheImages: string[];
|
|
10673
10822
|
altImages: string[];
|
|
10674
10823
|
altVideos: string[];
|
|
10675
|
-
timeStart: Date;
|
|
10676
|
-
timeEnd: Date;
|
|
10677
10824
|
status: EStatusTaskScript;
|
|
10678
10825
|
noteFix: string;
|
|
10826
|
+
timeEnd: Date;
|
|
10827
|
+
timezone: string;
|
|
10828
|
+
listDateOfWeeks: string[];
|
|
10829
|
+
schedulePostTime: Array<string>;
|
|
10679
10830
|
}
|
|
10680
10831
|
interface IThreadsReportPostELS extends IBaseELS {
|
|
10681
10832
|
idea: IBaseRefFieldELS;
|
|
@@ -10693,17 +10844,19 @@ interface IThreadsReportPostELS extends IBaseELS {
|
|
|
10693
10844
|
photosUrl: string[];
|
|
10694
10845
|
videosUrl: string[];
|
|
10695
10846
|
titleContent: string;
|
|
10696
|
-
|
|
10847
|
+
listTagsUsername: string[];
|
|
10697
10848
|
content: string;
|
|
10698
10849
|
caption: string;
|
|
10699
10850
|
hashtag: string;
|
|
10700
10851
|
altNicheImages: string[];
|
|
10701
10852
|
altImages: string[];
|
|
10702
10853
|
altVideos: string[];
|
|
10703
|
-
timeStart: Date;
|
|
10704
|
-
timeEnd: Date;
|
|
10705
10854
|
status: EStatusTaskScript;
|
|
10706
10855
|
noteFix: string;
|
|
10856
|
+
timeEnd: Date;
|
|
10857
|
+
timezone: string;
|
|
10858
|
+
listDateOfWeeks: string[];
|
|
10859
|
+
schedulePostTime: Array<string>;
|
|
10707
10860
|
}
|
|
10708
10861
|
|
|
10709
10862
|
interface IThreadsReportInteractFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -10713,10 +10866,12 @@ interface IThreadsReportInteractFollow extends IBaseModel, ITrackingModel<IUser>
|
|
|
10713
10866
|
follower: number;
|
|
10714
10867
|
following: number;
|
|
10715
10868
|
listUsersFollow: Array<string>;
|
|
10716
|
-
timeStart: Date;
|
|
10717
|
-
timeEnd: Date;
|
|
10718
10869
|
status: EStatusTaskScript;
|
|
10719
10870
|
noteFix: string;
|
|
10871
|
+
timeEnd: Date;
|
|
10872
|
+
timezone: string;
|
|
10873
|
+
listDateOfWeeks: string[];
|
|
10874
|
+
schedulePostTime: Array<string>;
|
|
10720
10875
|
}
|
|
10721
10876
|
interface IThreadsReportInteractFollowELS extends IBaseELS {
|
|
10722
10877
|
idea: IBaseRefFieldELS;
|
|
@@ -10733,10 +10888,12 @@ interface IThreadsReportInteractFollowELS extends IBaseELS {
|
|
|
10733
10888
|
follower: number;
|
|
10734
10889
|
following: number;
|
|
10735
10890
|
listUsersFollow: Array<string>;
|
|
10736
|
-
timeStart: Date;
|
|
10737
|
-
timeEnd: Date;
|
|
10738
10891
|
status: EStatusTaskScript;
|
|
10739
10892
|
noteFix: string;
|
|
10893
|
+
timeEnd: Date;
|
|
10894
|
+
timezone: string;
|
|
10895
|
+
listDateOfWeeks: string[];
|
|
10896
|
+
schedulePostTime: Array<string>;
|
|
10740
10897
|
}
|
|
10741
10898
|
|
|
10742
10899
|
interface IThreadsReportInteractUnFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -10746,10 +10903,12 @@ interface IThreadsReportInteractUnFollow extends IBaseModel, ITrackingModel<IUse
|
|
|
10746
10903
|
follower: number;
|
|
10747
10904
|
following: number;
|
|
10748
10905
|
listUsersUnFollow: Array<string>;
|
|
10749
|
-
timeStart: Date;
|
|
10750
|
-
timeEnd: Date;
|
|
10751
10906
|
status: EStatusTaskScript;
|
|
10752
10907
|
noteFix: string;
|
|
10908
|
+
timeEnd: Date;
|
|
10909
|
+
timezone: string;
|
|
10910
|
+
listDateOfWeeks: string[];
|
|
10911
|
+
schedulePostTime: Array<string>;
|
|
10753
10912
|
}
|
|
10754
10913
|
interface IThreadsReportInteractUnFollowELS extends IBaseELS {
|
|
10755
10914
|
idea: IBaseRefFieldELS;
|
|
@@ -10766,10 +10925,12 @@ interface IThreadsReportInteractUnFollowELS extends IBaseELS {
|
|
|
10766
10925
|
follower: number;
|
|
10767
10926
|
following: number;
|
|
10768
10927
|
listUsersUnFollow: Array<string>;
|
|
10769
|
-
timeStart: Date;
|
|
10770
|
-
timeEnd: Date;
|
|
10771
10928
|
status: EStatusTaskScript;
|
|
10772
10929
|
noteFix: string;
|
|
10930
|
+
timeEnd: Date;
|
|
10931
|
+
timezone: string;
|
|
10932
|
+
listDateOfWeeks: string[];
|
|
10933
|
+
schedulePostTime: Array<string>;
|
|
10773
10934
|
}
|
|
10774
10935
|
|
|
10775
10936
|
interface IThreadsReportInteractReplyMessage extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
|
|
@@ -10778,10 +10939,12 @@ interface IThreadsReportInteractReplyMessage extends IBaseModel, ITrackingTimeSc
|
|
|
10778
10939
|
sheetUrl: string;
|
|
10779
10940
|
receiverName: string;
|
|
10780
10941
|
messageReply: string;
|
|
10781
|
-
timeStart: Date;
|
|
10782
|
-
timeEnd: Date;
|
|
10783
10942
|
status: EStatusTaskScript;
|
|
10784
10943
|
noteFix: string;
|
|
10944
|
+
timeEnd: Date;
|
|
10945
|
+
timezone: string;
|
|
10946
|
+
listDateOfWeeks: string[];
|
|
10947
|
+
schedulePostTime: Array<string>;
|
|
10785
10948
|
}
|
|
10786
10949
|
interface IThreadsReportInteractReplyMessageELS extends IBaseELS {
|
|
10787
10950
|
idea: IBaseRefFieldELS;
|
|
@@ -10797,10 +10960,12 @@ interface IThreadsReportInteractReplyMessageELS extends IBaseELS {
|
|
|
10797
10960
|
sheetUrl: string;
|
|
10798
10961
|
receiverName: string;
|
|
10799
10962
|
messageReply: string;
|
|
10800
|
-
timeStart: Date;
|
|
10801
|
-
timeEnd: Date;
|
|
10802
10963
|
status: EStatusTaskScript;
|
|
10803
10964
|
noteFix: string;
|
|
10965
|
+
timeEnd: Date;
|
|
10966
|
+
timezone: string;
|
|
10967
|
+
listDateOfWeeks: string[];
|
|
10968
|
+
schedulePostTime: Array<string>;
|
|
10804
10969
|
}
|
|
10805
10970
|
|
|
10806
10971
|
interface IThreadsReportInteractReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -10810,10 +10975,12 @@ interface IThreadsReportInteractReplyComment extends IBaseModel, ITrackingModel<
|
|
|
10810
10975
|
content: string;
|
|
10811
10976
|
linkPost: string;
|
|
10812
10977
|
userLink: string;
|
|
10813
|
-
timeStart: Date;
|
|
10814
|
-
timeEnd: Date;
|
|
10815
10978
|
status: EStatusTaskScript;
|
|
10816
10979
|
noteFix: string;
|
|
10980
|
+
timeEnd: Date;
|
|
10981
|
+
timezone: string;
|
|
10982
|
+
listDateOfWeeks: string[];
|
|
10983
|
+
schedulePostTime: Array<string>;
|
|
10817
10984
|
}
|
|
10818
10985
|
interface IThreadsReportInteractReplyCommentELS extends IBaseELS {
|
|
10819
10986
|
idea: IBaseRefFieldELS;
|
|
@@ -10830,10 +10997,12 @@ interface IThreadsReportInteractReplyCommentELS extends IBaseELS {
|
|
|
10830
10997
|
content: string;
|
|
10831
10998
|
linkPost: string;
|
|
10832
10999
|
userLink: string;
|
|
10833
|
-
timeStart: Date;
|
|
10834
|
-
timeEnd: Date;
|
|
10835
11000
|
status: EStatusTaskScript;
|
|
10836
11001
|
noteFix: string;
|
|
11002
|
+
timeEnd: Date;
|
|
11003
|
+
timezone: string;
|
|
11004
|
+
listDateOfWeeks: string[];
|
|
11005
|
+
schedulePostTime: Array<string>;
|
|
10837
11006
|
}
|
|
10838
11007
|
|
|
10839
11008
|
interface IThreadsSettingPost extends IBaseModel, ITrackingModel<IUser> {
|