automation-lib 5.4.136 → 5.4.139
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 +52 -95
- package/dist/index.d.ts +52 -95
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -7568,7 +7568,7 @@ interface FindTaskInstagramPostDto extends IFindBaseDto {
|
|
|
7568
7568
|
deviceKey: string;
|
|
7569
7569
|
minuteWaiting: number;
|
|
7570
7570
|
isTimeUS: boolean;
|
|
7571
|
-
dayOfWeek:
|
|
7571
|
+
dayOfWeek: EDayOfWeek;
|
|
7572
7572
|
timeStart: Date;
|
|
7573
7573
|
timeEnd: Date;
|
|
7574
7574
|
service: string;
|
|
@@ -9814,7 +9814,14 @@ interface FindSheetsToolDto extends IFindBaseDto {
|
|
|
9814
9814
|
statusImport: ESheetToolStatusImport;
|
|
9815
9815
|
statusRun: ESheetToolStatusRun;
|
|
9816
9816
|
description: string;
|
|
9817
|
-
|
|
9817
|
+
listAccountSocial: Array<{
|
|
9818
|
+
id: string;
|
|
9819
|
+
accountId: string;
|
|
9820
|
+
group: string;
|
|
9821
|
+
username: string;
|
|
9822
|
+
status: string;
|
|
9823
|
+
createdAt: Date;
|
|
9824
|
+
}>;
|
|
9818
9825
|
noteFixImport: string;
|
|
9819
9826
|
lastUserInfo: IUserInfoAssignment;
|
|
9820
9827
|
}
|
|
@@ -11694,22 +11701,19 @@ interface ITaskInstagramBlockUser extends IBaseModel, ITrackingModel<IUser> {
|
|
|
11694
11701
|
sheetName: string;
|
|
11695
11702
|
typeSocial: ETypeSocial;
|
|
11696
11703
|
account: string | IInstagramAccountRaw;
|
|
11697
|
-
deviceKey: string;
|
|
11698
11704
|
minuteWaiting: number;
|
|
11699
11705
|
isTimeUS: boolean;
|
|
11700
|
-
dayOfWeek:
|
|
11706
|
+
dayOfWeek: EDayOfWeek;
|
|
11701
11707
|
timeFrom: string;
|
|
11702
11708
|
timeTo: string;
|
|
11703
11709
|
service: string;
|
|
11704
11710
|
action: string;
|
|
11705
11711
|
timeExecute: Date;
|
|
11706
11712
|
status: EStatusTaskToolSocials;
|
|
11707
|
-
|
|
11708
|
-
timeExecuteUS: Date;
|
|
11713
|
+
note: string;
|
|
11709
11714
|
listBlockUserName: string[];
|
|
11710
11715
|
listRestrictUserName: string[];
|
|
11711
11716
|
listHiddenUserName: string[];
|
|
11712
|
-
note: string;
|
|
11713
11717
|
}
|
|
11714
11718
|
interface ITaskInstagramBlockUserELS extends IBaseELS {
|
|
11715
11719
|
idea: IBaseRefFieldELS;
|
|
@@ -11745,19 +11749,16 @@ interface ITaskInstagramBlockUserELS extends IBaseELS {
|
|
|
11745
11749
|
};
|
|
11746
11750
|
minuteWaiting: number;
|
|
11747
11751
|
isTimeUS: boolean;
|
|
11748
|
-
dayOfWeek:
|
|
11752
|
+
dayOfWeek: EDayOfWeek;
|
|
11749
11753
|
timeFrom: string;
|
|
11750
11754
|
timeTo: string;
|
|
11751
11755
|
service: string;
|
|
11752
11756
|
action: string;
|
|
11753
11757
|
timeExecute: Date;
|
|
11754
11758
|
status: EStatusTaskToolSocials;
|
|
11755
|
-
dayOfWeekUS: string;
|
|
11756
|
-
timeExecuteUS: Date;
|
|
11757
11759
|
listBlockUserName: string[];
|
|
11758
11760
|
listRestrictUserName: string[];
|
|
11759
11761
|
listHiddenUserName: string[];
|
|
11760
|
-
note: string;
|
|
11761
11762
|
}
|
|
11762
11763
|
|
|
11763
11764
|
interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -11765,18 +11766,16 @@ interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
|
11765
11766
|
sheetName: string;
|
|
11766
11767
|
typeSocial: ETypeSocial;
|
|
11767
11768
|
account: string | IInstagramAccountRaw;
|
|
11768
|
-
deviceKey: string;
|
|
11769
11769
|
minuteWaiting: number;
|
|
11770
11770
|
isTimeUS: boolean;
|
|
11771
|
-
dayOfWeek:
|
|
11771
|
+
dayOfWeek: EDayOfWeek;
|
|
11772
11772
|
timeFrom: string;
|
|
11773
11773
|
timeTo: string;
|
|
11774
11774
|
service: string;
|
|
11775
11775
|
action: string;
|
|
11776
11776
|
timeExecute: Date;
|
|
11777
11777
|
status: EStatusTaskToolSocials;
|
|
11778
|
-
|
|
11779
|
-
timeExecuteUS: Date;
|
|
11778
|
+
note: string;
|
|
11780
11779
|
oldUserName: string;
|
|
11781
11780
|
typeChange: 'info' | 'bio' | 'password' | 'code2FA' | 'email' | 'link' | 'avatar' | 'cover';
|
|
11782
11781
|
changeUserNameNew: string;
|
|
@@ -11797,7 +11796,6 @@ interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
|
11797
11796
|
changeCover: string;
|
|
11798
11797
|
fontTextCoverUsername: string;
|
|
11799
11798
|
urlImageCover: string;
|
|
11800
|
-
note: string;
|
|
11801
11799
|
}
|
|
11802
11800
|
interface ITaskInstagramChangeInfoELS extends IBaseELS {
|
|
11803
11801
|
idea: IBaseRefFieldELS;
|
|
@@ -11833,15 +11831,14 @@ interface ITaskInstagramChangeInfoELS extends IBaseELS {
|
|
|
11833
11831
|
};
|
|
11834
11832
|
minuteWaiting: number;
|
|
11835
11833
|
isTimeUS: boolean;
|
|
11836
|
-
dayOfWeek:
|
|
11834
|
+
dayOfWeek: EDayOfWeek;
|
|
11837
11835
|
timeFrom: string;
|
|
11838
11836
|
timeTo: string;
|
|
11839
11837
|
service: string;
|
|
11840
11838
|
action: string;
|
|
11841
11839
|
timeExecute: Date;
|
|
11842
11840
|
status: EStatusTaskToolSocials;
|
|
11843
|
-
|
|
11844
|
-
timeExecuteUS: Date;
|
|
11841
|
+
note: string;
|
|
11845
11842
|
typeChange: 'info' | 'bio' | 'password' | 'code2FA' | 'email' | 'link' | 'avatar' | 'cover';
|
|
11846
11843
|
changeUserNameNew: string;
|
|
11847
11844
|
changeFullnameNew: string;
|
|
@@ -11861,7 +11858,6 @@ interface ITaskInstagramChangeInfoELS extends IBaseELS {
|
|
|
11861
11858
|
changeCover: string;
|
|
11862
11859
|
fontTextCoverUsername: string;
|
|
11863
11860
|
urlImageCover: string;
|
|
11864
|
-
note: string;
|
|
11865
11861
|
}
|
|
11866
11862
|
|
|
11867
11863
|
interface ITaskInstagramFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -11869,20 +11865,17 @@ interface ITaskInstagramFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
|
11869
11865
|
sheetName: string;
|
|
11870
11866
|
typeSocial: ETypeSocial;
|
|
11871
11867
|
account: string | IInstagramAccountRaw;
|
|
11872
|
-
deviceKey: string;
|
|
11873
11868
|
minuteWaiting: number;
|
|
11874
11869
|
isTimeUS: boolean;
|
|
11875
|
-
dayOfWeek:
|
|
11870
|
+
dayOfWeek: EDayOfWeek;
|
|
11876
11871
|
timeFrom: string;
|
|
11877
11872
|
timeTo: string;
|
|
11878
11873
|
service: string;
|
|
11879
11874
|
action: string;
|
|
11880
11875
|
timeExecute: Date;
|
|
11881
11876
|
status: EStatusTaskToolSocials;
|
|
11882
|
-
dayOfWeekUS: string;
|
|
11883
|
-
timeExecuteUS: Date;
|
|
11884
|
-
listUsernameFollow: string[];
|
|
11885
11877
|
note: string;
|
|
11878
|
+
listUsernameFollow: string[];
|
|
11886
11879
|
}
|
|
11887
11880
|
interface ITaskInstagramFollowELS extends IBaseELS {
|
|
11888
11881
|
idea: IBaseRefFieldELS;
|
|
@@ -11918,40 +11911,35 @@ interface ITaskInstagramFollowELS extends IBaseELS {
|
|
|
11918
11911
|
};
|
|
11919
11912
|
minuteWaiting: number;
|
|
11920
11913
|
isTimeUS: boolean;
|
|
11921
|
-
dayOfWeek:
|
|
11914
|
+
dayOfWeek: EDayOfWeek;
|
|
11922
11915
|
timeFrom: string;
|
|
11923
11916
|
timeTo: string;
|
|
11924
11917
|
service: string;
|
|
11925
11918
|
action: string;
|
|
11926
11919
|
timeExecute: Date;
|
|
11927
11920
|
status: EStatusTaskToolSocials;
|
|
11928
|
-
dayOfWeekUS: string;
|
|
11929
|
-
timeExecuteUS: Date;
|
|
11930
|
-
listUsernameFollow: string[];
|
|
11931
11921
|
note: string;
|
|
11922
|
+
listUsernameFollow: string[];
|
|
11932
11923
|
}
|
|
11933
11924
|
|
|
11934
11925
|
interface ITaskInstagramInteractExplore extends IBaseModel, ITrackingModel<IUser> {
|
|
11935
11926
|
typeSocial: ETypeSocial;
|
|
11936
11927
|
account: string | IInstagramAccountRaw;
|
|
11937
|
-
deviceKey: string;
|
|
11938
11928
|
minuteWaiting: number;
|
|
11939
11929
|
isTimeUS: boolean;
|
|
11940
|
-
dayOfWeek:
|
|
11930
|
+
dayOfWeek: EDayOfWeek;
|
|
11941
11931
|
timeFrom: string;
|
|
11942
11932
|
timeTo: string;
|
|
11943
11933
|
service: string;
|
|
11944
11934
|
action: string;
|
|
11945
11935
|
timeExecute: Date;
|
|
11946
11936
|
status: EStatusTaskToolSocials;
|
|
11947
|
-
|
|
11948
|
-
timeExecuteUS: Date;
|
|
11937
|
+
note: string;
|
|
11949
11938
|
numberView: number;
|
|
11950
11939
|
isBasicView: boolean;
|
|
11951
11940
|
isLike: boolean;
|
|
11952
11941
|
numberLike: number;
|
|
11953
11942
|
minuteRun: number;
|
|
11954
|
-
note: string;
|
|
11955
11943
|
}
|
|
11956
11944
|
interface ITaskInstagramInteractExploreELS extends IBaseELS {
|
|
11957
11945
|
idea: IBaseRefFieldELS;
|
|
@@ -11987,43 +11975,38 @@ interface ITaskInstagramInteractExploreELS extends IBaseELS {
|
|
|
11987
11975
|
};
|
|
11988
11976
|
minuteWaiting: number;
|
|
11989
11977
|
isTimeUS: boolean;
|
|
11990
|
-
dayOfWeek:
|
|
11978
|
+
dayOfWeek: EDayOfWeek;
|
|
11991
11979
|
timeFrom: string;
|
|
11992
11980
|
timeTo: string;
|
|
11993
11981
|
service: string;
|
|
11994
11982
|
action: string;
|
|
11995
11983
|
timeExecute: Date;
|
|
11996
11984
|
status: EStatusTaskToolSocials;
|
|
11997
|
-
|
|
11998
|
-
timeExecuteUS: Date;
|
|
11985
|
+
note: string;
|
|
11999
11986
|
numberView: number;
|
|
12000
11987
|
isBasicView: boolean;
|
|
12001
11988
|
isLike: boolean;
|
|
12002
11989
|
numberLike: number;
|
|
12003
11990
|
minuteRun: number;
|
|
12004
|
-
note: string;
|
|
12005
11991
|
}
|
|
12006
11992
|
|
|
12007
11993
|
interface ITaskInstagramInteractReel extends IBaseModel, ITrackingModel<IUser> {
|
|
12008
11994
|
typeSocial: ETypeSocial;
|
|
12009
11995
|
account: string | IInstagramAccountRaw;
|
|
12010
|
-
deviceKey: string;
|
|
12011
11996
|
minuteWaiting: number;
|
|
12012
11997
|
isTimeUS: boolean;
|
|
12013
|
-
dayOfWeek:
|
|
11998
|
+
dayOfWeek: EDayOfWeek;
|
|
12014
11999
|
timeFrom: string;
|
|
12015
12000
|
timeTo: string;
|
|
12016
12001
|
service: string;
|
|
12017
12002
|
action: string;
|
|
12018
12003
|
timeExecute: Date;
|
|
12019
12004
|
status: EStatusTaskToolSocials;
|
|
12020
|
-
|
|
12021
|
-
timeExecuteUS: Date;
|
|
12005
|
+
note: string;
|
|
12022
12006
|
numberView: number;
|
|
12023
12007
|
isLike: boolean;
|
|
12024
12008
|
numberLike: number;
|
|
12025
12009
|
minuteRun: number;
|
|
12026
|
-
note: string;
|
|
12027
12010
|
}
|
|
12028
12011
|
interface ITaskInstagramInteractReelELS extends IBaseELS {
|
|
12029
12012
|
idea: IBaseRefFieldELS;
|
|
@@ -12059,41 +12042,36 @@ interface ITaskInstagramInteractReelELS extends IBaseELS {
|
|
|
12059
12042
|
};
|
|
12060
12043
|
minuteWaiting: number;
|
|
12061
12044
|
isTimeUS: boolean;
|
|
12062
|
-
dayOfWeek:
|
|
12045
|
+
dayOfWeek: EDayOfWeek;
|
|
12063
12046
|
timeFrom: string;
|
|
12064
12047
|
timeTo: string;
|
|
12065
12048
|
service: string;
|
|
12066
12049
|
action: string;
|
|
12067
12050
|
timeExecute: Date;
|
|
12068
12051
|
status: EStatusTaskToolSocials;
|
|
12069
|
-
|
|
12070
|
-
timeExecuteUS: Date;
|
|
12052
|
+
note: string;
|
|
12071
12053
|
numberView: number;
|
|
12072
12054
|
isLike: boolean;
|
|
12073
12055
|
numberLike: number;
|
|
12074
12056
|
minuteRun: number;
|
|
12075
|
-
note: string;
|
|
12076
12057
|
}
|
|
12077
12058
|
|
|
12078
12059
|
interface ITaskInstagramInteractStory extends IBaseModel, ITrackingModel<IUser> {
|
|
12079
12060
|
typeSocial: ETypeSocial;
|
|
12080
12061
|
account: string | IInstagramAccountRaw;
|
|
12081
|
-
deviceKey: string;
|
|
12082
12062
|
minuteWaiting: number;
|
|
12083
12063
|
isTimeUS: boolean;
|
|
12084
|
-
dayOfWeek:
|
|
12064
|
+
dayOfWeek: EDayOfWeek;
|
|
12085
12065
|
timeFrom: string;
|
|
12086
12066
|
timeTo: string;
|
|
12087
12067
|
service: string;
|
|
12088
12068
|
action: string;
|
|
12089
12069
|
timeExecute: Date;
|
|
12090
12070
|
status: EStatusTaskToolSocials;
|
|
12091
|
-
|
|
12092
|
-
timeExecuteUS: Date;
|
|
12071
|
+
note: string;
|
|
12093
12072
|
numberView: number;
|
|
12094
12073
|
isLike: boolean;
|
|
12095
12074
|
numberLike: number;
|
|
12096
|
-
note: string;
|
|
12097
12075
|
}
|
|
12098
12076
|
interface ITaskInstagramInteractStoryELS extends IBaseELS {
|
|
12099
12077
|
idea: IBaseRefFieldELS;
|
|
@@ -12129,37 +12107,33 @@ interface ITaskInstagramInteractStoryELS extends IBaseELS {
|
|
|
12129
12107
|
};
|
|
12130
12108
|
minuteWaiting: number;
|
|
12131
12109
|
isTimeUS: boolean;
|
|
12132
|
-
dayOfWeek:
|
|
12110
|
+
dayOfWeek: EDayOfWeek;
|
|
12133
12111
|
timeFrom: string;
|
|
12134
12112
|
timeTo: string;
|
|
12135
12113
|
service: string;
|
|
12136
12114
|
action: string;
|
|
12137
12115
|
timeExecute: Date;
|
|
12138
12116
|
status: EStatusTaskToolSocials;
|
|
12139
|
-
|
|
12140
|
-
timeExecuteUS: Date;
|
|
12117
|
+
note: string;
|
|
12141
12118
|
numberView: number;
|
|
12142
12119
|
isLike: boolean;
|
|
12143
12120
|
numberLike: number;
|
|
12144
|
-
note: string;
|
|
12145
12121
|
}
|
|
12146
12122
|
|
|
12147
12123
|
interface ITaskInstagramPost extends IBaseModel, ITrackingModel<IUser> {
|
|
12148
12124
|
account: string | IInstagramAccountRaw;
|
|
12149
12125
|
sheetUrl: string;
|
|
12150
12126
|
sheetName: string;
|
|
12151
|
-
deviceKey: string;
|
|
12152
12127
|
minuteWaiting: number;
|
|
12153
12128
|
isTimeUS: boolean;
|
|
12154
|
-
dayOfWeek:
|
|
12129
|
+
dayOfWeek: EDayOfWeek;
|
|
12155
12130
|
timeFrom: string;
|
|
12156
12131
|
timeTo: string;
|
|
12157
12132
|
service: string;
|
|
12158
12133
|
action: string;
|
|
12159
12134
|
timeExecute: Date;
|
|
12160
12135
|
status: EStatusTaskToolSocials;
|
|
12161
|
-
|
|
12162
|
-
timeExecuteUS: Date;
|
|
12136
|
+
note: string;
|
|
12163
12137
|
canvaUrlVideo: string;
|
|
12164
12138
|
canvaImageThumb: string;
|
|
12165
12139
|
canvaImagePage1: string;
|
|
@@ -12201,7 +12175,6 @@ interface ITaskInstagramPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
12201
12175
|
statusSocial: EStatusAccountSocial;
|
|
12202
12176
|
statusPost: string;
|
|
12203
12177
|
linkPost: string;
|
|
12204
|
-
note: string;
|
|
12205
12178
|
}
|
|
12206
12179
|
interface ITaskInstagramPostELS extends IBaseELS {
|
|
12207
12180
|
idea: IBaseRefFieldELS;
|
|
@@ -12237,15 +12210,14 @@ interface ITaskInstagramPostELS extends IBaseELS {
|
|
|
12237
12210
|
};
|
|
12238
12211
|
minuteWaiting: number;
|
|
12239
12212
|
isTimeUS: boolean;
|
|
12240
|
-
dayOfWeek:
|
|
12213
|
+
dayOfWeek: EDayOfWeek;
|
|
12241
12214
|
timeFrom: string;
|
|
12242
12215
|
timeTo: string;
|
|
12243
12216
|
service: string;
|
|
12244
12217
|
action: string;
|
|
12245
12218
|
timeExecute: Date;
|
|
12246
12219
|
status: EStatusTaskToolSocials;
|
|
12247
|
-
|
|
12248
|
-
timeExecuteUS: Date;
|
|
12220
|
+
note: string;
|
|
12249
12221
|
folderImageName: string;
|
|
12250
12222
|
sheetUrl: string;
|
|
12251
12223
|
sheetName: string;
|
|
@@ -12290,7 +12262,6 @@ interface ITaskInstagramPostELS extends IBaseELS {
|
|
|
12290
12262
|
statusSocial: EStatusAccountSocial;
|
|
12291
12263
|
statusPost: string;
|
|
12292
12264
|
linkPost: string;
|
|
12293
|
-
note: string;
|
|
12294
12265
|
}
|
|
12295
12266
|
|
|
12296
12267
|
interface ITaskInstagramReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -12298,18 +12269,16 @@ interface ITaskInstagramReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
|
12298
12269
|
sheetName: string;
|
|
12299
12270
|
typeSocial: ETypeSocial;
|
|
12300
12271
|
account: string | IInstagramAccountRaw;
|
|
12301
|
-
deviceKey: string;
|
|
12302
12272
|
minuteWaiting: number;
|
|
12303
12273
|
isTimeUS: boolean;
|
|
12304
|
-
dayOfWeek:
|
|
12274
|
+
dayOfWeek: EDayOfWeek;
|
|
12305
12275
|
timeFrom: string;
|
|
12306
12276
|
timeTo: string;
|
|
12307
12277
|
service: string;
|
|
12308
12278
|
action: string;
|
|
12309
12279
|
timeExecute: Date;
|
|
12310
12280
|
status: EStatusTaskToolSocials;
|
|
12311
|
-
|
|
12312
|
-
timeExecuteUS: Date;
|
|
12281
|
+
note: string;
|
|
12313
12282
|
postUrlReply: string;
|
|
12314
12283
|
messageForReply: string;
|
|
12315
12284
|
replyCommentContentStep1: string;
|
|
@@ -12351,15 +12320,14 @@ interface ITaskInstagramReplyCommentELS extends IBaseELS {
|
|
|
12351
12320
|
};
|
|
12352
12321
|
minuteWaiting: number;
|
|
12353
12322
|
isTimeUS: boolean;
|
|
12354
|
-
dayOfWeek:
|
|
12323
|
+
dayOfWeek: EDayOfWeek;
|
|
12355
12324
|
timeFrom: string;
|
|
12356
12325
|
timeTo: string;
|
|
12357
12326
|
service: string;
|
|
12358
12327
|
action: string;
|
|
12359
12328
|
timeExecute: Date;
|
|
12360
12329
|
status: EStatusTaskToolSocials;
|
|
12361
|
-
|
|
12362
|
-
timeExecuteUS: Date;
|
|
12330
|
+
note: string;
|
|
12363
12331
|
sheetUrl: string;
|
|
12364
12332
|
sheetName: string;
|
|
12365
12333
|
postUrlReply: string;
|
|
@@ -12375,18 +12343,16 @@ interface ITaskInstagramReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
|
12375
12343
|
sheetName: string;
|
|
12376
12344
|
account: string | IInstagramAccountRaw;
|
|
12377
12345
|
typeSocial: ETypeSocial;
|
|
12378
|
-
deviceKey: string;
|
|
12379
12346
|
minuteWaiting: number;
|
|
12380
12347
|
isTimeUS: boolean;
|
|
12381
|
-
dayOfWeek:
|
|
12348
|
+
dayOfWeek: EDayOfWeek;
|
|
12382
12349
|
timeFrom: string;
|
|
12383
12350
|
timeTo: string;
|
|
12384
12351
|
service: string;
|
|
12385
12352
|
action: string;
|
|
12386
12353
|
timeExecute: Date;
|
|
12387
12354
|
status: EStatusTaskToolSocials;
|
|
12388
|
-
|
|
12389
|
-
timeExecuteUS: Date;
|
|
12355
|
+
note: string;
|
|
12390
12356
|
postUrlReply: string;
|
|
12391
12357
|
messageForReply: string;
|
|
12392
12358
|
replyMessageContentStep1: string;
|
|
@@ -12428,15 +12394,14 @@ interface ITaskInstagramReplyMessageELS extends IBaseELS {
|
|
|
12428
12394
|
};
|
|
12429
12395
|
minuteWaiting: number;
|
|
12430
12396
|
isTimeUS: boolean;
|
|
12431
|
-
dayOfWeek:
|
|
12397
|
+
dayOfWeek: EDayOfWeek;
|
|
12432
12398
|
timeFrom: string;
|
|
12433
12399
|
timeTo: string;
|
|
12434
12400
|
service: string;
|
|
12435
12401
|
action: string;
|
|
12436
12402
|
timeExecute: Date;
|
|
12437
12403
|
status: EStatusTaskToolSocials;
|
|
12438
|
-
|
|
12439
|
-
timeExecuteUS: Date;
|
|
12404
|
+
note: string;
|
|
12440
12405
|
sheetUrl: string;
|
|
12441
12406
|
sheetName: string;
|
|
12442
12407
|
postUrlReply: string;
|
|
@@ -13253,18 +13218,16 @@ interface ITaskThreadsPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
13253
13218
|
sheetName: string;
|
|
13254
13219
|
typeSocial: ETypeSocial;
|
|
13255
13220
|
account: string | IThreadsAccountRaw;
|
|
13256
|
-
deviceKey: string;
|
|
13257
13221
|
minuteWaiting: number;
|
|
13258
13222
|
isTimeUS: boolean;
|
|
13259
|
-
dayOfWeek:
|
|
13223
|
+
dayOfWeek: EDayOfWeek;
|
|
13260
13224
|
timeFrom: string;
|
|
13261
13225
|
timeTo: string;
|
|
13262
13226
|
service: string;
|
|
13263
13227
|
action: string;
|
|
13264
13228
|
timeExecute: Date;
|
|
13265
13229
|
status: EStatusTaskToolSocials;
|
|
13266
|
-
|
|
13267
|
-
timeExecuteUS: Date;
|
|
13230
|
+
note: string;
|
|
13268
13231
|
canvaUrlVideo: string;
|
|
13269
13232
|
canvaImageThumb: string;
|
|
13270
13233
|
canvaImagePage1: string;
|
|
@@ -13280,18 +13243,16 @@ interface ITaskThreadsFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
|
13280
13243
|
sheetUrl: string;
|
|
13281
13244
|
sheetName: string;
|
|
13282
13245
|
typeSocial: ETypeSocial;
|
|
13283
|
-
deviceKey: string;
|
|
13284
13246
|
minuteWaiting: number;
|
|
13285
13247
|
isTimeUS: boolean;
|
|
13286
|
-
dayOfWeek:
|
|
13248
|
+
dayOfWeek: EDayOfWeek;
|
|
13287
13249
|
timeFrom: string;
|
|
13288
13250
|
timeTo: string;
|
|
13289
13251
|
service: string;
|
|
13290
13252
|
action: string;
|
|
13291
13253
|
timeExecute: Date;
|
|
13292
13254
|
status: EStatusTaskToolSocials;
|
|
13293
|
-
|
|
13294
|
-
timeExecuteUS: Date;
|
|
13255
|
+
note: string;
|
|
13295
13256
|
listUsernameFollow: string[];
|
|
13296
13257
|
}
|
|
13297
13258
|
|
|
@@ -13300,18 +13261,16 @@ interface ITaskThreadsReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
|
13300
13261
|
sheetName: string;
|
|
13301
13262
|
typeSocial: ETypeSocial;
|
|
13302
13263
|
account: string | IThreadsAccountRaw;
|
|
13303
|
-
deviceKey: string;
|
|
13304
13264
|
minuteWaiting: number;
|
|
13305
13265
|
isTimeUS: boolean;
|
|
13306
|
-
dayOfWeek:
|
|
13266
|
+
dayOfWeek: EDayOfWeek;
|
|
13307
13267
|
timeFrom: string;
|
|
13308
13268
|
timeTo: string;
|
|
13309
13269
|
service: string;
|
|
13310
13270
|
action: string;
|
|
13311
13271
|
timeExecute: Date;
|
|
13312
13272
|
status: EStatusTaskToolSocials;
|
|
13313
|
-
|
|
13314
|
-
timeExecuteUS: Date;
|
|
13273
|
+
note: string;
|
|
13315
13274
|
postUrlReply: string;
|
|
13316
13275
|
messageForReply: string;
|
|
13317
13276
|
replyCommentContentStep1: string;
|
|
@@ -13325,18 +13284,16 @@ interface ITaskThreadsReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
|
13325
13284
|
sheetName: string;
|
|
13326
13285
|
typeSocial: ETypeSocial;
|
|
13327
13286
|
account: string | IThreadsAccountRaw;
|
|
13328
|
-
deviceKey: string;
|
|
13329
13287
|
minuteWaiting: number;
|
|
13330
13288
|
isTimeUS: boolean;
|
|
13331
|
-
dayOfWeek:
|
|
13289
|
+
dayOfWeek: EDayOfWeek;
|
|
13332
13290
|
timeFrom: string;
|
|
13333
13291
|
timeTo: string;
|
|
13334
13292
|
service: string;
|
|
13335
13293
|
action: string;
|
|
13336
13294
|
timeExecute: Date;
|
|
13337
13295
|
status: EStatusTaskToolSocials;
|
|
13338
|
-
|
|
13339
|
-
timeExecuteUS: Date;
|
|
13296
|
+
note: string;
|
|
13340
13297
|
postUrlReply: string;
|
|
13341
13298
|
messageForReply: string;
|
|
13342
13299
|
replyMessageContentStep1: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -7568,7 +7568,7 @@ interface FindTaskInstagramPostDto extends IFindBaseDto {
|
|
|
7568
7568
|
deviceKey: string;
|
|
7569
7569
|
minuteWaiting: number;
|
|
7570
7570
|
isTimeUS: boolean;
|
|
7571
|
-
dayOfWeek:
|
|
7571
|
+
dayOfWeek: EDayOfWeek;
|
|
7572
7572
|
timeStart: Date;
|
|
7573
7573
|
timeEnd: Date;
|
|
7574
7574
|
service: string;
|
|
@@ -9814,7 +9814,14 @@ interface FindSheetsToolDto extends IFindBaseDto {
|
|
|
9814
9814
|
statusImport: ESheetToolStatusImport;
|
|
9815
9815
|
statusRun: ESheetToolStatusRun;
|
|
9816
9816
|
description: string;
|
|
9817
|
-
|
|
9817
|
+
listAccountSocial: Array<{
|
|
9818
|
+
id: string;
|
|
9819
|
+
accountId: string;
|
|
9820
|
+
group: string;
|
|
9821
|
+
username: string;
|
|
9822
|
+
status: string;
|
|
9823
|
+
createdAt: Date;
|
|
9824
|
+
}>;
|
|
9818
9825
|
noteFixImport: string;
|
|
9819
9826
|
lastUserInfo: IUserInfoAssignment;
|
|
9820
9827
|
}
|
|
@@ -11694,22 +11701,19 @@ interface ITaskInstagramBlockUser extends IBaseModel, ITrackingModel<IUser> {
|
|
|
11694
11701
|
sheetName: string;
|
|
11695
11702
|
typeSocial: ETypeSocial;
|
|
11696
11703
|
account: string | IInstagramAccountRaw;
|
|
11697
|
-
deviceKey: string;
|
|
11698
11704
|
minuteWaiting: number;
|
|
11699
11705
|
isTimeUS: boolean;
|
|
11700
|
-
dayOfWeek:
|
|
11706
|
+
dayOfWeek: EDayOfWeek;
|
|
11701
11707
|
timeFrom: string;
|
|
11702
11708
|
timeTo: string;
|
|
11703
11709
|
service: string;
|
|
11704
11710
|
action: string;
|
|
11705
11711
|
timeExecute: Date;
|
|
11706
11712
|
status: EStatusTaskToolSocials;
|
|
11707
|
-
|
|
11708
|
-
timeExecuteUS: Date;
|
|
11713
|
+
note: string;
|
|
11709
11714
|
listBlockUserName: string[];
|
|
11710
11715
|
listRestrictUserName: string[];
|
|
11711
11716
|
listHiddenUserName: string[];
|
|
11712
|
-
note: string;
|
|
11713
11717
|
}
|
|
11714
11718
|
interface ITaskInstagramBlockUserELS extends IBaseELS {
|
|
11715
11719
|
idea: IBaseRefFieldELS;
|
|
@@ -11745,19 +11749,16 @@ interface ITaskInstagramBlockUserELS extends IBaseELS {
|
|
|
11745
11749
|
};
|
|
11746
11750
|
minuteWaiting: number;
|
|
11747
11751
|
isTimeUS: boolean;
|
|
11748
|
-
dayOfWeek:
|
|
11752
|
+
dayOfWeek: EDayOfWeek;
|
|
11749
11753
|
timeFrom: string;
|
|
11750
11754
|
timeTo: string;
|
|
11751
11755
|
service: string;
|
|
11752
11756
|
action: string;
|
|
11753
11757
|
timeExecute: Date;
|
|
11754
11758
|
status: EStatusTaskToolSocials;
|
|
11755
|
-
dayOfWeekUS: string;
|
|
11756
|
-
timeExecuteUS: Date;
|
|
11757
11759
|
listBlockUserName: string[];
|
|
11758
11760
|
listRestrictUserName: string[];
|
|
11759
11761
|
listHiddenUserName: string[];
|
|
11760
|
-
note: string;
|
|
11761
11762
|
}
|
|
11762
11763
|
|
|
11763
11764
|
interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -11765,18 +11766,16 @@ interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
|
11765
11766
|
sheetName: string;
|
|
11766
11767
|
typeSocial: ETypeSocial;
|
|
11767
11768
|
account: string | IInstagramAccountRaw;
|
|
11768
|
-
deviceKey: string;
|
|
11769
11769
|
minuteWaiting: number;
|
|
11770
11770
|
isTimeUS: boolean;
|
|
11771
|
-
dayOfWeek:
|
|
11771
|
+
dayOfWeek: EDayOfWeek;
|
|
11772
11772
|
timeFrom: string;
|
|
11773
11773
|
timeTo: string;
|
|
11774
11774
|
service: string;
|
|
11775
11775
|
action: string;
|
|
11776
11776
|
timeExecute: Date;
|
|
11777
11777
|
status: EStatusTaskToolSocials;
|
|
11778
|
-
|
|
11779
|
-
timeExecuteUS: Date;
|
|
11778
|
+
note: string;
|
|
11780
11779
|
oldUserName: string;
|
|
11781
11780
|
typeChange: 'info' | 'bio' | 'password' | 'code2FA' | 'email' | 'link' | 'avatar' | 'cover';
|
|
11782
11781
|
changeUserNameNew: string;
|
|
@@ -11797,7 +11796,6 @@ interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
|
11797
11796
|
changeCover: string;
|
|
11798
11797
|
fontTextCoverUsername: string;
|
|
11799
11798
|
urlImageCover: string;
|
|
11800
|
-
note: string;
|
|
11801
11799
|
}
|
|
11802
11800
|
interface ITaskInstagramChangeInfoELS extends IBaseELS {
|
|
11803
11801
|
idea: IBaseRefFieldELS;
|
|
@@ -11833,15 +11831,14 @@ interface ITaskInstagramChangeInfoELS extends IBaseELS {
|
|
|
11833
11831
|
};
|
|
11834
11832
|
minuteWaiting: number;
|
|
11835
11833
|
isTimeUS: boolean;
|
|
11836
|
-
dayOfWeek:
|
|
11834
|
+
dayOfWeek: EDayOfWeek;
|
|
11837
11835
|
timeFrom: string;
|
|
11838
11836
|
timeTo: string;
|
|
11839
11837
|
service: string;
|
|
11840
11838
|
action: string;
|
|
11841
11839
|
timeExecute: Date;
|
|
11842
11840
|
status: EStatusTaskToolSocials;
|
|
11843
|
-
|
|
11844
|
-
timeExecuteUS: Date;
|
|
11841
|
+
note: string;
|
|
11845
11842
|
typeChange: 'info' | 'bio' | 'password' | 'code2FA' | 'email' | 'link' | 'avatar' | 'cover';
|
|
11846
11843
|
changeUserNameNew: string;
|
|
11847
11844
|
changeFullnameNew: string;
|
|
@@ -11861,7 +11858,6 @@ interface ITaskInstagramChangeInfoELS extends IBaseELS {
|
|
|
11861
11858
|
changeCover: string;
|
|
11862
11859
|
fontTextCoverUsername: string;
|
|
11863
11860
|
urlImageCover: string;
|
|
11864
|
-
note: string;
|
|
11865
11861
|
}
|
|
11866
11862
|
|
|
11867
11863
|
interface ITaskInstagramFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -11869,20 +11865,17 @@ interface ITaskInstagramFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
|
11869
11865
|
sheetName: string;
|
|
11870
11866
|
typeSocial: ETypeSocial;
|
|
11871
11867
|
account: string | IInstagramAccountRaw;
|
|
11872
|
-
deviceKey: string;
|
|
11873
11868
|
minuteWaiting: number;
|
|
11874
11869
|
isTimeUS: boolean;
|
|
11875
|
-
dayOfWeek:
|
|
11870
|
+
dayOfWeek: EDayOfWeek;
|
|
11876
11871
|
timeFrom: string;
|
|
11877
11872
|
timeTo: string;
|
|
11878
11873
|
service: string;
|
|
11879
11874
|
action: string;
|
|
11880
11875
|
timeExecute: Date;
|
|
11881
11876
|
status: EStatusTaskToolSocials;
|
|
11882
|
-
dayOfWeekUS: string;
|
|
11883
|
-
timeExecuteUS: Date;
|
|
11884
|
-
listUsernameFollow: string[];
|
|
11885
11877
|
note: string;
|
|
11878
|
+
listUsernameFollow: string[];
|
|
11886
11879
|
}
|
|
11887
11880
|
interface ITaskInstagramFollowELS extends IBaseELS {
|
|
11888
11881
|
idea: IBaseRefFieldELS;
|
|
@@ -11918,40 +11911,35 @@ interface ITaskInstagramFollowELS extends IBaseELS {
|
|
|
11918
11911
|
};
|
|
11919
11912
|
minuteWaiting: number;
|
|
11920
11913
|
isTimeUS: boolean;
|
|
11921
|
-
dayOfWeek:
|
|
11914
|
+
dayOfWeek: EDayOfWeek;
|
|
11922
11915
|
timeFrom: string;
|
|
11923
11916
|
timeTo: string;
|
|
11924
11917
|
service: string;
|
|
11925
11918
|
action: string;
|
|
11926
11919
|
timeExecute: Date;
|
|
11927
11920
|
status: EStatusTaskToolSocials;
|
|
11928
|
-
dayOfWeekUS: string;
|
|
11929
|
-
timeExecuteUS: Date;
|
|
11930
|
-
listUsernameFollow: string[];
|
|
11931
11921
|
note: string;
|
|
11922
|
+
listUsernameFollow: string[];
|
|
11932
11923
|
}
|
|
11933
11924
|
|
|
11934
11925
|
interface ITaskInstagramInteractExplore extends IBaseModel, ITrackingModel<IUser> {
|
|
11935
11926
|
typeSocial: ETypeSocial;
|
|
11936
11927
|
account: string | IInstagramAccountRaw;
|
|
11937
|
-
deviceKey: string;
|
|
11938
11928
|
minuteWaiting: number;
|
|
11939
11929
|
isTimeUS: boolean;
|
|
11940
|
-
dayOfWeek:
|
|
11930
|
+
dayOfWeek: EDayOfWeek;
|
|
11941
11931
|
timeFrom: string;
|
|
11942
11932
|
timeTo: string;
|
|
11943
11933
|
service: string;
|
|
11944
11934
|
action: string;
|
|
11945
11935
|
timeExecute: Date;
|
|
11946
11936
|
status: EStatusTaskToolSocials;
|
|
11947
|
-
|
|
11948
|
-
timeExecuteUS: Date;
|
|
11937
|
+
note: string;
|
|
11949
11938
|
numberView: number;
|
|
11950
11939
|
isBasicView: boolean;
|
|
11951
11940
|
isLike: boolean;
|
|
11952
11941
|
numberLike: number;
|
|
11953
11942
|
minuteRun: number;
|
|
11954
|
-
note: string;
|
|
11955
11943
|
}
|
|
11956
11944
|
interface ITaskInstagramInteractExploreELS extends IBaseELS {
|
|
11957
11945
|
idea: IBaseRefFieldELS;
|
|
@@ -11987,43 +11975,38 @@ interface ITaskInstagramInteractExploreELS extends IBaseELS {
|
|
|
11987
11975
|
};
|
|
11988
11976
|
minuteWaiting: number;
|
|
11989
11977
|
isTimeUS: boolean;
|
|
11990
|
-
dayOfWeek:
|
|
11978
|
+
dayOfWeek: EDayOfWeek;
|
|
11991
11979
|
timeFrom: string;
|
|
11992
11980
|
timeTo: string;
|
|
11993
11981
|
service: string;
|
|
11994
11982
|
action: string;
|
|
11995
11983
|
timeExecute: Date;
|
|
11996
11984
|
status: EStatusTaskToolSocials;
|
|
11997
|
-
|
|
11998
|
-
timeExecuteUS: Date;
|
|
11985
|
+
note: string;
|
|
11999
11986
|
numberView: number;
|
|
12000
11987
|
isBasicView: boolean;
|
|
12001
11988
|
isLike: boolean;
|
|
12002
11989
|
numberLike: number;
|
|
12003
11990
|
minuteRun: number;
|
|
12004
|
-
note: string;
|
|
12005
11991
|
}
|
|
12006
11992
|
|
|
12007
11993
|
interface ITaskInstagramInteractReel extends IBaseModel, ITrackingModel<IUser> {
|
|
12008
11994
|
typeSocial: ETypeSocial;
|
|
12009
11995
|
account: string | IInstagramAccountRaw;
|
|
12010
|
-
deviceKey: string;
|
|
12011
11996
|
minuteWaiting: number;
|
|
12012
11997
|
isTimeUS: boolean;
|
|
12013
|
-
dayOfWeek:
|
|
11998
|
+
dayOfWeek: EDayOfWeek;
|
|
12014
11999
|
timeFrom: string;
|
|
12015
12000
|
timeTo: string;
|
|
12016
12001
|
service: string;
|
|
12017
12002
|
action: string;
|
|
12018
12003
|
timeExecute: Date;
|
|
12019
12004
|
status: EStatusTaskToolSocials;
|
|
12020
|
-
|
|
12021
|
-
timeExecuteUS: Date;
|
|
12005
|
+
note: string;
|
|
12022
12006
|
numberView: number;
|
|
12023
12007
|
isLike: boolean;
|
|
12024
12008
|
numberLike: number;
|
|
12025
12009
|
minuteRun: number;
|
|
12026
|
-
note: string;
|
|
12027
12010
|
}
|
|
12028
12011
|
interface ITaskInstagramInteractReelELS extends IBaseELS {
|
|
12029
12012
|
idea: IBaseRefFieldELS;
|
|
@@ -12059,41 +12042,36 @@ interface ITaskInstagramInteractReelELS extends IBaseELS {
|
|
|
12059
12042
|
};
|
|
12060
12043
|
minuteWaiting: number;
|
|
12061
12044
|
isTimeUS: boolean;
|
|
12062
|
-
dayOfWeek:
|
|
12045
|
+
dayOfWeek: EDayOfWeek;
|
|
12063
12046
|
timeFrom: string;
|
|
12064
12047
|
timeTo: string;
|
|
12065
12048
|
service: string;
|
|
12066
12049
|
action: string;
|
|
12067
12050
|
timeExecute: Date;
|
|
12068
12051
|
status: EStatusTaskToolSocials;
|
|
12069
|
-
|
|
12070
|
-
timeExecuteUS: Date;
|
|
12052
|
+
note: string;
|
|
12071
12053
|
numberView: number;
|
|
12072
12054
|
isLike: boolean;
|
|
12073
12055
|
numberLike: number;
|
|
12074
12056
|
minuteRun: number;
|
|
12075
|
-
note: string;
|
|
12076
12057
|
}
|
|
12077
12058
|
|
|
12078
12059
|
interface ITaskInstagramInteractStory extends IBaseModel, ITrackingModel<IUser> {
|
|
12079
12060
|
typeSocial: ETypeSocial;
|
|
12080
12061
|
account: string | IInstagramAccountRaw;
|
|
12081
|
-
deviceKey: string;
|
|
12082
12062
|
minuteWaiting: number;
|
|
12083
12063
|
isTimeUS: boolean;
|
|
12084
|
-
dayOfWeek:
|
|
12064
|
+
dayOfWeek: EDayOfWeek;
|
|
12085
12065
|
timeFrom: string;
|
|
12086
12066
|
timeTo: string;
|
|
12087
12067
|
service: string;
|
|
12088
12068
|
action: string;
|
|
12089
12069
|
timeExecute: Date;
|
|
12090
12070
|
status: EStatusTaskToolSocials;
|
|
12091
|
-
|
|
12092
|
-
timeExecuteUS: Date;
|
|
12071
|
+
note: string;
|
|
12093
12072
|
numberView: number;
|
|
12094
12073
|
isLike: boolean;
|
|
12095
12074
|
numberLike: number;
|
|
12096
|
-
note: string;
|
|
12097
12075
|
}
|
|
12098
12076
|
interface ITaskInstagramInteractStoryELS extends IBaseELS {
|
|
12099
12077
|
idea: IBaseRefFieldELS;
|
|
@@ -12129,37 +12107,33 @@ interface ITaskInstagramInteractStoryELS extends IBaseELS {
|
|
|
12129
12107
|
};
|
|
12130
12108
|
minuteWaiting: number;
|
|
12131
12109
|
isTimeUS: boolean;
|
|
12132
|
-
dayOfWeek:
|
|
12110
|
+
dayOfWeek: EDayOfWeek;
|
|
12133
12111
|
timeFrom: string;
|
|
12134
12112
|
timeTo: string;
|
|
12135
12113
|
service: string;
|
|
12136
12114
|
action: string;
|
|
12137
12115
|
timeExecute: Date;
|
|
12138
12116
|
status: EStatusTaskToolSocials;
|
|
12139
|
-
|
|
12140
|
-
timeExecuteUS: Date;
|
|
12117
|
+
note: string;
|
|
12141
12118
|
numberView: number;
|
|
12142
12119
|
isLike: boolean;
|
|
12143
12120
|
numberLike: number;
|
|
12144
|
-
note: string;
|
|
12145
12121
|
}
|
|
12146
12122
|
|
|
12147
12123
|
interface ITaskInstagramPost extends IBaseModel, ITrackingModel<IUser> {
|
|
12148
12124
|
account: string | IInstagramAccountRaw;
|
|
12149
12125
|
sheetUrl: string;
|
|
12150
12126
|
sheetName: string;
|
|
12151
|
-
deviceKey: string;
|
|
12152
12127
|
minuteWaiting: number;
|
|
12153
12128
|
isTimeUS: boolean;
|
|
12154
|
-
dayOfWeek:
|
|
12129
|
+
dayOfWeek: EDayOfWeek;
|
|
12155
12130
|
timeFrom: string;
|
|
12156
12131
|
timeTo: string;
|
|
12157
12132
|
service: string;
|
|
12158
12133
|
action: string;
|
|
12159
12134
|
timeExecute: Date;
|
|
12160
12135
|
status: EStatusTaskToolSocials;
|
|
12161
|
-
|
|
12162
|
-
timeExecuteUS: Date;
|
|
12136
|
+
note: string;
|
|
12163
12137
|
canvaUrlVideo: string;
|
|
12164
12138
|
canvaImageThumb: string;
|
|
12165
12139
|
canvaImagePage1: string;
|
|
@@ -12201,7 +12175,6 @@ interface ITaskInstagramPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
12201
12175
|
statusSocial: EStatusAccountSocial;
|
|
12202
12176
|
statusPost: string;
|
|
12203
12177
|
linkPost: string;
|
|
12204
|
-
note: string;
|
|
12205
12178
|
}
|
|
12206
12179
|
interface ITaskInstagramPostELS extends IBaseELS {
|
|
12207
12180
|
idea: IBaseRefFieldELS;
|
|
@@ -12237,15 +12210,14 @@ interface ITaskInstagramPostELS extends IBaseELS {
|
|
|
12237
12210
|
};
|
|
12238
12211
|
minuteWaiting: number;
|
|
12239
12212
|
isTimeUS: boolean;
|
|
12240
|
-
dayOfWeek:
|
|
12213
|
+
dayOfWeek: EDayOfWeek;
|
|
12241
12214
|
timeFrom: string;
|
|
12242
12215
|
timeTo: string;
|
|
12243
12216
|
service: string;
|
|
12244
12217
|
action: string;
|
|
12245
12218
|
timeExecute: Date;
|
|
12246
12219
|
status: EStatusTaskToolSocials;
|
|
12247
|
-
|
|
12248
|
-
timeExecuteUS: Date;
|
|
12220
|
+
note: string;
|
|
12249
12221
|
folderImageName: string;
|
|
12250
12222
|
sheetUrl: string;
|
|
12251
12223
|
sheetName: string;
|
|
@@ -12290,7 +12262,6 @@ interface ITaskInstagramPostELS extends IBaseELS {
|
|
|
12290
12262
|
statusSocial: EStatusAccountSocial;
|
|
12291
12263
|
statusPost: string;
|
|
12292
12264
|
linkPost: string;
|
|
12293
|
-
note: string;
|
|
12294
12265
|
}
|
|
12295
12266
|
|
|
12296
12267
|
interface ITaskInstagramReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -12298,18 +12269,16 @@ interface ITaskInstagramReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
|
12298
12269
|
sheetName: string;
|
|
12299
12270
|
typeSocial: ETypeSocial;
|
|
12300
12271
|
account: string | IInstagramAccountRaw;
|
|
12301
|
-
deviceKey: string;
|
|
12302
12272
|
minuteWaiting: number;
|
|
12303
12273
|
isTimeUS: boolean;
|
|
12304
|
-
dayOfWeek:
|
|
12274
|
+
dayOfWeek: EDayOfWeek;
|
|
12305
12275
|
timeFrom: string;
|
|
12306
12276
|
timeTo: string;
|
|
12307
12277
|
service: string;
|
|
12308
12278
|
action: string;
|
|
12309
12279
|
timeExecute: Date;
|
|
12310
12280
|
status: EStatusTaskToolSocials;
|
|
12311
|
-
|
|
12312
|
-
timeExecuteUS: Date;
|
|
12281
|
+
note: string;
|
|
12313
12282
|
postUrlReply: string;
|
|
12314
12283
|
messageForReply: string;
|
|
12315
12284
|
replyCommentContentStep1: string;
|
|
@@ -12351,15 +12320,14 @@ interface ITaskInstagramReplyCommentELS extends IBaseELS {
|
|
|
12351
12320
|
};
|
|
12352
12321
|
minuteWaiting: number;
|
|
12353
12322
|
isTimeUS: boolean;
|
|
12354
|
-
dayOfWeek:
|
|
12323
|
+
dayOfWeek: EDayOfWeek;
|
|
12355
12324
|
timeFrom: string;
|
|
12356
12325
|
timeTo: string;
|
|
12357
12326
|
service: string;
|
|
12358
12327
|
action: string;
|
|
12359
12328
|
timeExecute: Date;
|
|
12360
12329
|
status: EStatusTaskToolSocials;
|
|
12361
|
-
|
|
12362
|
-
timeExecuteUS: Date;
|
|
12330
|
+
note: string;
|
|
12363
12331
|
sheetUrl: string;
|
|
12364
12332
|
sheetName: string;
|
|
12365
12333
|
postUrlReply: string;
|
|
@@ -12375,18 +12343,16 @@ interface ITaskInstagramReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
|
12375
12343
|
sheetName: string;
|
|
12376
12344
|
account: string | IInstagramAccountRaw;
|
|
12377
12345
|
typeSocial: ETypeSocial;
|
|
12378
|
-
deviceKey: string;
|
|
12379
12346
|
minuteWaiting: number;
|
|
12380
12347
|
isTimeUS: boolean;
|
|
12381
|
-
dayOfWeek:
|
|
12348
|
+
dayOfWeek: EDayOfWeek;
|
|
12382
12349
|
timeFrom: string;
|
|
12383
12350
|
timeTo: string;
|
|
12384
12351
|
service: string;
|
|
12385
12352
|
action: string;
|
|
12386
12353
|
timeExecute: Date;
|
|
12387
12354
|
status: EStatusTaskToolSocials;
|
|
12388
|
-
|
|
12389
|
-
timeExecuteUS: Date;
|
|
12355
|
+
note: string;
|
|
12390
12356
|
postUrlReply: string;
|
|
12391
12357
|
messageForReply: string;
|
|
12392
12358
|
replyMessageContentStep1: string;
|
|
@@ -12428,15 +12394,14 @@ interface ITaskInstagramReplyMessageELS extends IBaseELS {
|
|
|
12428
12394
|
};
|
|
12429
12395
|
minuteWaiting: number;
|
|
12430
12396
|
isTimeUS: boolean;
|
|
12431
|
-
dayOfWeek:
|
|
12397
|
+
dayOfWeek: EDayOfWeek;
|
|
12432
12398
|
timeFrom: string;
|
|
12433
12399
|
timeTo: string;
|
|
12434
12400
|
service: string;
|
|
12435
12401
|
action: string;
|
|
12436
12402
|
timeExecute: Date;
|
|
12437
12403
|
status: EStatusTaskToolSocials;
|
|
12438
|
-
|
|
12439
|
-
timeExecuteUS: Date;
|
|
12404
|
+
note: string;
|
|
12440
12405
|
sheetUrl: string;
|
|
12441
12406
|
sheetName: string;
|
|
12442
12407
|
postUrlReply: string;
|
|
@@ -13253,18 +13218,16 @@ interface ITaskThreadsPost extends IBaseModel, ITrackingModel<IUser> {
|
|
|
13253
13218
|
sheetName: string;
|
|
13254
13219
|
typeSocial: ETypeSocial;
|
|
13255
13220
|
account: string | IThreadsAccountRaw;
|
|
13256
|
-
deviceKey: string;
|
|
13257
13221
|
minuteWaiting: number;
|
|
13258
13222
|
isTimeUS: boolean;
|
|
13259
|
-
dayOfWeek:
|
|
13223
|
+
dayOfWeek: EDayOfWeek;
|
|
13260
13224
|
timeFrom: string;
|
|
13261
13225
|
timeTo: string;
|
|
13262
13226
|
service: string;
|
|
13263
13227
|
action: string;
|
|
13264
13228
|
timeExecute: Date;
|
|
13265
13229
|
status: EStatusTaskToolSocials;
|
|
13266
|
-
|
|
13267
|
-
timeExecuteUS: Date;
|
|
13230
|
+
note: string;
|
|
13268
13231
|
canvaUrlVideo: string;
|
|
13269
13232
|
canvaImageThumb: string;
|
|
13270
13233
|
canvaImagePage1: string;
|
|
@@ -13280,18 +13243,16 @@ interface ITaskThreadsFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
|
13280
13243
|
sheetUrl: string;
|
|
13281
13244
|
sheetName: string;
|
|
13282
13245
|
typeSocial: ETypeSocial;
|
|
13283
|
-
deviceKey: string;
|
|
13284
13246
|
minuteWaiting: number;
|
|
13285
13247
|
isTimeUS: boolean;
|
|
13286
|
-
dayOfWeek:
|
|
13248
|
+
dayOfWeek: EDayOfWeek;
|
|
13287
13249
|
timeFrom: string;
|
|
13288
13250
|
timeTo: string;
|
|
13289
13251
|
service: string;
|
|
13290
13252
|
action: string;
|
|
13291
13253
|
timeExecute: Date;
|
|
13292
13254
|
status: EStatusTaskToolSocials;
|
|
13293
|
-
|
|
13294
|
-
timeExecuteUS: Date;
|
|
13255
|
+
note: string;
|
|
13295
13256
|
listUsernameFollow: string[];
|
|
13296
13257
|
}
|
|
13297
13258
|
|
|
@@ -13300,18 +13261,16 @@ interface ITaskThreadsReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
|
13300
13261
|
sheetName: string;
|
|
13301
13262
|
typeSocial: ETypeSocial;
|
|
13302
13263
|
account: string | IThreadsAccountRaw;
|
|
13303
|
-
deviceKey: string;
|
|
13304
13264
|
minuteWaiting: number;
|
|
13305
13265
|
isTimeUS: boolean;
|
|
13306
|
-
dayOfWeek:
|
|
13266
|
+
dayOfWeek: EDayOfWeek;
|
|
13307
13267
|
timeFrom: string;
|
|
13308
13268
|
timeTo: string;
|
|
13309
13269
|
service: string;
|
|
13310
13270
|
action: string;
|
|
13311
13271
|
timeExecute: Date;
|
|
13312
13272
|
status: EStatusTaskToolSocials;
|
|
13313
|
-
|
|
13314
|
-
timeExecuteUS: Date;
|
|
13273
|
+
note: string;
|
|
13315
13274
|
postUrlReply: string;
|
|
13316
13275
|
messageForReply: string;
|
|
13317
13276
|
replyCommentContentStep1: string;
|
|
@@ -13325,18 +13284,16 @@ interface ITaskThreadsReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
|
13325
13284
|
sheetName: string;
|
|
13326
13285
|
typeSocial: ETypeSocial;
|
|
13327
13286
|
account: string | IThreadsAccountRaw;
|
|
13328
|
-
deviceKey: string;
|
|
13329
13287
|
minuteWaiting: number;
|
|
13330
13288
|
isTimeUS: boolean;
|
|
13331
|
-
dayOfWeek:
|
|
13289
|
+
dayOfWeek: EDayOfWeek;
|
|
13332
13290
|
timeFrom: string;
|
|
13333
13291
|
timeTo: string;
|
|
13334
13292
|
service: string;
|
|
13335
13293
|
action: string;
|
|
13336
13294
|
timeExecute: Date;
|
|
13337
13295
|
status: EStatusTaskToolSocials;
|
|
13338
|
-
|
|
13339
|
-
timeExecuteUS: Date;
|
|
13296
|
+
note: string;
|
|
13340
13297
|
postUrlReply: string;
|
|
13341
13298
|
messageForReply: string;
|
|
13342
13299
|
replyMessageContentStep1: string;
|