automation-lib 5.4.36 → 5.4.38
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 +319 -135
- package/dist/index.d.ts +319 -135
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -930,7 +930,7 @@ declare enum EStatusChangeInfo {
|
|
|
930
930
|
Done = "Done",
|
|
931
931
|
Failed = "Failed",
|
|
932
932
|
Pending = "Pending",
|
|
933
|
-
|
|
933
|
+
WaitingTask = "WaitingTask",
|
|
934
934
|
NA = "N/A"
|
|
935
935
|
}
|
|
936
936
|
|
|
@@ -2986,9 +2986,6 @@ interface FilterThreadsHistoryChangeDto extends IFilterBaseDto, IFilterBaseAccou
|
|
|
2986
2986
|
}
|
|
2987
2987
|
|
|
2988
2988
|
interface FindThreadsAccountRawDto extends IFindBaseDto, IThreadsAccountRaw {
|
|
2989
|
-
idea: string | IManagerWork;
|
|
2990
|
-
niche: string | IManagerWork;
|
|
2991
|
-
type: ETypeManagerWorkClassify;
|
|
2992
2989
|
deviceInfo: {
|
|
2993
2990
|
key: string;
|
|
2994
2991
|
name: string;
|
|
@@ -3012,11 +3009,105 @@ interface FindThreadsAccountRawDto extends IFindBaseDto, IThreadsAccountRaw {
|
|
|
3012
3009
|
};
|
|
3013
3010
|
timeUpdate: Date;
|
|
3014
3011
|
};
|
|
3012
|
+
statusAutoSyncAccount: {
|
|
3013
|
+
statusSync: EStatusAccountSocialSync;
|
|
3014
|
+
timeSync: Date;
|
|
3015
|
+
};
|
|
3016
|
+
idea: string | IManagerWork;
|
|
3017
|
+
niche: string | IManagerWork;
|
|
3018
|
+
type: ETypeManagerWorkClassify;
|
|
3015
3019
|
folderImage: {
|
|
3016
3020
|
folderName: string;
|
|
3017
|
-
|
|
3021
|
+
statusChange: string;
|
|
3022
|
+
timeChange: Date;
|
|
3023
|
+
};
|
|
3024
|
+
accountGroup: string | IAccountSocialGroup;
|
|
3025
|
+
typeSocial: ETypeSocial;
|
|
3026
|
+
accountID: string;
|
|
3027
|
+
historyUserName: {
|
|
3028
|
+
old: string;
|
|
3029
|
+
new: string;
|
|
3030
|
+
statusChange: EStatusChangeInfo;
|
|
3031
|
+
timeChange: Date;
|
|
3032
|
+
};
|
|
3033
|
+
historyFullname: {
|
|
3034
|
+
old: string;
|
|
3035
|
+
new: string;
|
|
3036
|
+
statusChange: EStatusChangeInfo;
|
|
3037
|
+
timeChange: Date;
|
|
3038
|
+
};
|
|
3039
|
+
historyPassword: {
|
|
3040
|
+
old: string;
|
|
3041
|
+
new: string;
|
|
3042
|
+
statusChange: EStatusChangeInfo;
|
|
3043
|
+
timeChange: Date;
|
|
3044
|
+
};
|
|
3045
|
+
history2FA: {
|
|
3046
|
+
old: string;
|
|
3047
|
+
new: string;
|
|
3048
|
+
statusChange: EStatusChangeInfo;
|
|
3049
|
+
timeChange: Date;
|
|
3050
|
+
};
|
|
3051
|
+
historyEmail: {
|
|
3052
|
+
old: string;
|
|
3053
|
+
new: string;
|
|
3054
|
+
statusChange: EStatusChangeInfo;
|
|
3055
|
+
timeChange: Date;
|
|
3056
|
+
};
|
|
3057
|
+
loginSocialStatus: {
|
|
3058
|
+
status: EStatusAccountSocialLogin;
|
|
3059
|
+
time: Date;
|
|
3060
|
+
};
|
|
3061
|
+
accountSetting: {
|
|
3062
|
+
typeAccount: ETypeAccountInstagramSetting;
|
|
3063
|
+
timeChangeTypeAccount: Date;
|
|
3064
|
+
statusAccount: EStatusAccountSocialSetting;
|
|
3065
|
+
timeChangeAccount: Date;
|
|
3066
|
+
};
|
|
3067
|
+
avatarInfo: {
|
|
3068
|
+
prompt: string;
|
|
3069
|
+
url: string;
|
|
3070
|
+
statusChange: EStatusChangeInfo;
|
|
3071
|
+
timeChange: Date;
|
|
3072
|
+
};
|
|
3073
|
+
coverInfo: {
|
|
3074
|
+
prompt: string;
|
|
3075
|
+
url: string;
|
|
3076
|
+
statusChange: EStatusChangeInfo;
|
|
3077
|
+
timeChange: Date;
|
|
3078
|
+
};
|
|
3079
|
+
bioContentInfo: {
|
|
3080
|
+
content: string;
|
|
3081
|
+
statusChange: EStatusChangeInfo;
|
|
3082
|
+
timeChange: Date;
|
|
3083
|
+
};
|
|
3084
|
+
bioLinkInfo: {
|
|
3085
|
+
listLink: string[];
|
|
3086
|
+
statusChange: EStatusChangeInfo;
|
|
3087
|
+
timeChange: Date;
|
|
3088
|
+
};
|
|
3089
|
+
interest: {
|
|
3090
|
+
content: string;
|
|
3091
|
+
statusChange: EStatusChangeInfo;
|
|
3092
|
+
timeChange: Date;
|
|
3093
|
+
};
|
|
3094
|
+
loginEmailInfo: {
|
|
3095
|
+
email: string;
|
|
3096
|
+
emailPassword: string;
|
|
3097
|
+
email2FA: string;
|
|
3098
|
+
emailRecover: string;
|
|
3099
|
+
};
|
|
3100
|
+
loginEmailStatus: {
|
|
3101
|
+
status: EStatusAccountSocialLoginEmail;
|
|
3018
3102
|
time: Date;
|
|
3019
3103
|
};
|
|
3104
|
+
importInfo: {
|
|
3105
|
+
sheetUrl: string;
|
|
3106
|
+
sheetName: string;
|
|
3107
|
+
typeImport: string;
|
|
3108
|
+
timeImport: Date;
|
|
3109
|
+
statusImport: EStatusAccountSocialImport;
|
|
3110
|
+
};
|
|
3020
3111
|
}
|
|
3021
3112
|
interface AutoFillOverviewThreadsAccountRawDto {
|
|
3022
3113
|
idea: {
|
|
@@ -3075,6 +3166,13 @@ interface FilterThreadsAccountRawDto extends IFilterBaseDto {
|
|
|
3075
3166
|
}
|
|
3076
3167
|
interface FindOverViewThreadsAccountRowDto {
|
|
3077
3168
|
totalAccounts: number;
|
|
3169
|
+
totalStatusLogin: {
|
|
3170
|
+
total: number;
|
|
3171
|
+
active: number;
|
|
3172
|
+
inactive: number;
|
|
3173
|
+
blocked: number;
|
|
3174
|
+
waiting: number;
|
|
3175
|
+
};
|
|
3078
3176
|
totalIdeas: number;
|
|
3079
3177
|
totalNiches: number;
|
|
3080
3178
|
totalTypes: {
|
|
@@ -3082,17 +3180,13 @@ interface FindOverViewThreadsAccountRowDto {
|
|
|
3082
3180
|
TM: number;
|
|
3083
3181
|
NTM: number;
|
|
3084
3182
|
};
|
|
3085
|
-
totalAccountGroups: number;
|
|
3086
3183
|
totalAccountSync: {
|
|
3087
3184
|
total: number;
|
|
3088
3185
|
done: number;
|
|
3089
3186
|
failed: number;
|
|
3090
|
-
|
|
3091
|
-
|
|
3092
|
-
|
|
3093
|
-
done: number;
|
|
3094
|
-
pending: number;
|
|
3095
|
-
failed: number;
|
|
3187
|
+
new: number;
|
|
3188
|
+
waiting: number;
|
|
3189
|
+
missing: number;
|
|
3096
3190
|
};
|
|
3097
3191
|
totalAccountSetting: {
|
|
3098
3192
|
total: number;
|
|
@@ -3100,59 +3194,66 @@ interface FindOverViewThreadsAccountRowDto {
|
|
|
3100
3194
|
error: number;
|
|
3101
3195
|
unknown: number;
|
|
3102
3196
|
};
|
|
3197
|
+
totalStatusCreateFolder: {
|
|
3198
|
+
total: number;
|
|
3199
|
+
done: number;
|
|
3200
|
+
pending: number;
|
|
3201
|
+
failed: number;
|
|
3202
|
+
};
|
|
3103
3203
|
totalLoginEmail: {
|
|
3104
3204
|
total: number;
|
|
3105
3205
|
active: number;
|
|
3106
3206
|
inactive: number;
|
|
3107
|
-
|
|
3207
|
+
blocked: number;
|
|
3108
3208
|
};
|
|
3109
3209
|
accountsWithAvatar: {
|
|
3110
3210
|
total: number;
|
|
3111
3211
|
done: number;
|
|
3112
3212
|
pending: number;
|
|
3113
3213
|
failed: number;
|
|
3114
|
-
|
|
3115
|
-
accountsWithCover: {
|
|
3116
|
-
total: number;
|
|
3117
|
-
done: number;
|
|
3118
|
-
pending: number;
|
|
3119
|
-
failed: number;
|
|
3214
|
+
waiting: number;
|
|
3120
3215
|
};
|
|
3121
3216
|
accountsWithBio: {
|
|
3122
3217
|
total: number;
|
|
3123
3218
|
done: number;
|
|
3124
3219
|
pending: number;
|
|
3125
3220
|
failed: number;
|
|
3221
|
+
waiting: number;
|
|
3126
3222
|
};
|
|
3127
3223
|
accountsWithLinks: {
|
|
3128
3224
|
total: number;
|
|
3129
3225
|
done: number;
|
|
3130
3226
|
pending: number;
|
|
3131
3227
|
failed: number;
|
|
3228
|
+
waiting: number;
|
|
3132
3229
|
};
|
|
3133
3230
|
usernameChanged: {
|
|
3134
3231
|
total: number;
|
|
3135
3232
|
done: number;
|
|
3136
3233
|
pending: number;
|
|
3137
3234
|
failed: number;
|
|
3235
|
+
waiting: number;
|
|
3138
3236
|
};
|
|
3139
3237
|
passwordChanged: {
|
|
3140
3238
|
total: number;
|
|
3141
3239
|
done: number;
|
|
3142
3240
|
pending: number;
|
|
3143
3241
|
failed: number;
|
|
3242
|
+
waiting: number;
|
|
3144
3243
|
};
|
|
3145
3244
|
twoFactorAuthChanged: {
|
|
3146
3245
|
total: number;
|
|
3147
3246
|
done: number;
|
|
3148
3247
|
pending: number;
|
|
3149
3248
|
failed: number;
|
|
3249
|
+
waiting: number;
|
|
3150
3250
|
};
|
|
3151
3251
|
emailChanged: {
|
|
3152
3252
|
total: number;
|
|
3153
3253
|
done: number;
|
|
3154
3254
|
pending: number;
|
|
3155
3255
|
failed: number;
|
|
3256
|
+
waiting: number;
|
|
3156
3257
|
};
|
|
3157
3258
|
}
|
|
3158
3259
|
interface AutoFillThreadsAccountRawDto {
|
|
@@ -3194,9 +3295,22 @@ interface AutoFillAssignedMemberThreadsAccountRawDto {
|
|
|
3194
3295
|
}
|
|
3195
3296
|
|
|
3196
3297
|
interface FindThreadsAccountRunDto extends IFindBaseDto {
|
|
3298
|
+
typeSocial: ETypeSocial;
|
|
3197
3299
|
idea: string | IManagerWork;
|
|
3198
3300
|
niche: string | IManagerWork;
|
|
3199
3301
|
type: ETypeManagerWorkClassify;
|
|
3302
|
+
importInfo: {
|
|
3303
|
+
sheetUrl: string;
|
|
3304
|
+
sheetName: string;
|
|
3305
|
+
typeImport: string;
|
|
3306
|
+
timeImport: Date;
|
|
3307
|
+
statusImport: EStatusAccountSocialImport;
|
|
3308
|
+
};
|
|
3309
|
+
runStartDateTime: Date;
|
|
3310
|
+
runEndDateTime: Date;
|
|
3311
|
+
statusRun: EStatusAccountSocialRun;
|
|
3312
|
+
statusConnectDevice: EStatusDeviceConnectPC;
|
|
3313
|
+
noteConnectDevice: string;
|
|
3200
3314
|
pcInfo: {
|
|
3201
3315
|
name: string;
|
|
3202
3316
|
department: string;
|
|
@@ -3904,26 +4018,9 @@ interface IAccountSocialGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
|
3904
4018
|
description: string;
|
|
3905
4019
|
}
|
|
3906
4020
|
|
|
3907
|
-
interface
|
|
3908
|
-
accountRaw: string | IInstagramAccountRaw;
|
|
3909
|
-
numberPost: number;
|
|
3910
|
-
numberFollowers: number;
|
|
3911
|
-
numberFollowings: number;
|
|
3912
|
-
runStartDateTime: Date;
|
|
3913
|
-
runEndDateTime: Date;
|
|
3914
|
-
statusRun: EStatusAccountSocialRun;
|
|
3915
|
-
statusConnectDevice: EStatusDeviceConnectPC;
|
|
3916
|
-
noteConnectDevice: string;
|
|
3917
|
-
currentActiveTime: Date;
|
|
3918
|
-
lastActiveTime: Date;
|
|
3919
|
-
note: string;
|
|
3920
|
-
}
|
|
3921
|
-
|
|
3922
|
-
interface IInstagramAccountRaw extends IBaseModel, IAccountSocialBase, ITrackingModel<IUser> {
|
|
3923
|
-
sheetUrl: string;
|
|
3924
|
-
sheetName: string;
|
|
4021
|
+
interface IInstagramAccountRaw extends IBaseModel, ITrackingModel<IUser> {
|
|
3925
4022
|
group: IAccountSocialGroup | string;
|
|
3926
|
-
accountID:
|
|
4023
|
+
accountID: string;
|
|
3927
4024
|
nameAppCloneSocial: string;
|
|
3928
4025
|
accountDeviceTypeAppClone: string;
|
|
3929
4026
|
accountDeviceNameAppClone: string;
|
|
@@ -3931,33 +4028,12 @@ interface IInstagramAccountRaw extends IBaseModel, IAccountSocialBase, ITracking
|
|
|
3931
4028
|
niche: string | IManagerWork;
|
|
3932
4029
|
type: ETypeManagerWorkClassify;
|
|
3933
4030
|
pc: IPC | string;
|
|
3934
|
-
deviceKey: string;
|
|
3935
4031
|
device: IDevice | string;
|
|
3936
|
-
timeImport: Date;
|
|
3937
|
-
statusImport: EStatusAccountSocialImport;
|
|
3938
4032
|
statusSyncAccount: EStatusAccountSocialSync;
|
|
3939
4033
|
timeSyncAccount: Date;
|
|
3940
|
-
accountSocialSync: string | IInstagramAccountRun;
|
|
3941
|
-
noteImport: string;
|
|
3942
|
-
timeLogin: Date;
|
|
3943
|
-
statusLogin: EStatusAccountSocialLogin;
|
|
3944
4034
|
folderNameImage: string;
|
|
3945
4035
|
statusFolderNameImage: EStatusAccountSocialFolderName;
|
|
3946
4036
|
timeFolderNameImage: Date;
|
|
3947
|
-
promptAvatar: string;
|
|
3948
|
-
oldAvatar: string | IFile;
|
|
3949
|
-
newAvatar: string | IFile;
|
|
3950
|
-
statusChangeAvatar: EStatusChangeInfo;
|
|
3951
|
-
timeChangeAvatar: Date;
|
|
3952
|
-
promptCover: string;
|
|
3953
|
-
oldCover: string | IFile;
|
|
3954
|
-
newCover: string | IFile;
|
|
3955
|
-
statusChangeCover: EStatusChangeInfo;
|
|
3956
|
-
timeChangeCover: Date;
|
|
3957
|
-
oldGroup: string | IAccountSocialGroup;
|
|
3958
|
-
newGroup: string | IAccountSocialGroup;
|
|
3959
|
-
statusChangeGroup: EStatusChangeInfo;
|
|
3960
|
-
timeChangeGroup: Date;
|
|
3961
4037
|
oldUsername: string;
|
|
3962
4038
|
newUsername: string;
|
|
3963
4039
|
statusChangeUsername: EStatusChangeInfo;
|
|
@@ -3966,24 +4042,36 @@ interface IInstagramAccountRaw extends IBaseModel, IAccountSocialBase, ITracking
|
|
|
3966
4042
|
newFullname: string;
|
|
3967
4043
|
statusChangeFullname: EStatusChangeInfo;
|
|
3968
4044
|
timeChangeFullname: Date;
|
|
3969
|
-
oldEmail: string;
|
|
3970
|
-
newEmail: string;
|
|
3971
|
-
statusChangeEmail: EStatusChangeInfo;
|
|
3972
|
-
timeChangeEmail: Date;
|
|
3973
|
-
old2FA: string;
|
|
3974
|
-
new2FA: string;
|
|
3975
|
-
statusChange2fa: EStatusChangeInfo;
|
|
3976
|
-
timeChange2FA: Date;
|
|
3977
4045
|
oldPassword: string;
|
|
3978
4046
|
newPassword: string;
|
|
3979
4047
|
statusChangePassword: EStatusChangeInfo;
|
|
3980
4048
|
timeChangePassword: Date;
|
|
3981
|
-
|
|
3982
|
-
|
|
4049
|
+
old2FA: string;
|
|
4050
|
+
new2FA: string;
|
|
4051
|
+
statusChange2fa: EStatusChangeInfo;
|
|
4052
|
+
timeChange2FA: Date;
|
|
4053
|
+
oldEmail: string;
|
|
4054
|
+
newEmail: string;
|
|
4055
|
+
statusChangeEmail: EStatusChangeInfo;
|
|
4056
|
+
timeChangeEmail: Date;
|
|
4057
|
+
statusLogin: EStatusAccountSocialLogin;
|
|
4058
|
+
timeLogin: Date;
|
|
4059
|
+
typeAccountSetting: ETypeAccountInstagramSetting;
|
|
4060
|
+
timeChangeTypeAccountSetting: Date;
|
|
4061
|
+
statusAccountSetting: EStatusAccountSocialSetting;
|
|
4062
|
+
timeChangeAccountSetting: Date;
|
|
4063
|
+
promptAvatar: string;
|
|
4064
|
+
avatar: string | IFile;
|
|
4065
|
+
statusChangeAvatar: EStatusChangeInfo;
|
|
4066
|
+
timeChangeAvatar: Date;
|
|
4067
|
+
promptCover: string;
|
|
4068
|
+
cover: string | IFile;
|
|
4069
|
+
statusChangeCover: EStatusChangeInfo;
|
|
4070
|
+
timeChangeCover: Date;
|
|
4071
|
+
bioContent: string;
|
|
3983
4072
|
statusChangeBioContent: EStatusChangeInfo;
|
|
3984
4073
|
timeChangeBioContent: Date;
|
|
3985
|
-
|
|
3986
|
-
newListBioLink: string[];
|
|
4074
|
+
listBioLink: string[];
|
|
3987
4075
|
statusChangeBioLink: EStatusChangeInfo;
|
|
3988
4076
|
timeChangeBioLink: Date;
|
|
3989
4077
|
email: string;
|
|
@@ -3992,13 +4080,8 @@ interface IInstagramAccountRaw extends IBaseModel, IAccountSocialBase, ITracking
|
|
|
3992
4080
|
emailRecover: string;
|
|
3993
4081
|
statusLoginEmail: EStatusAccountSocialLoginEmail;
|
|
3994
4082
|
timeLoginEmail: Date;
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
statusAccountSetting: EStatusAccountSocialSetting;
|
|
3998
|
-
timeChangeAccountSetting: Date;
|
|
3999
|
-
statusConnectDevice: EStatusDeviceConnectPC;
|
|
4000
|
-
noteConnectDevice: string;
|
|
4001
|
-
note: string;
|
|
4083
|
+
timeImport: Date;
|
|
4084
|
+
statusImport: EStatusAccountSocialImport;
|
|
4002
4085
|
timeLastUsed: Date;
|
|
4003
4086
|
lastUserUsed: string | IUser;
|
|
4004
4087
|
}
|
|
@@ -4350,6 +4433,21 @@ interface IInstagramHistoryChangeInfoELS extends IBaseELS {
|
|
|
4350
4433
|
note: string;
|
|
4351
4434
|
}
|
|
4352
4435
|
|
|
4436
|
+
interface IInstagramAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
4437
|
+
accountRaw: string | IInstagramAccountRaw;
|
|
4438
|
+
numberPost: number;
|
|
4439
|
+
numberFollowers: number;
|
|
4440
|
+
numberFollowings: number;
|
|
4441
|
+
runStartDateTime: Date;
|
|
4442
|
+
runEndDateTime: Date;
|
|
4443
|
+
statusRun: EStatusAccountSocialRun;
|
|
4444
|
+
statusConnectDevice: EStatusDeviceConnectPC;
|
|
4445
|
+
noteConnectDevice: string;
|
|
4446
|
+
currentActiveTime: Date;
|
|
4447
|
+
lastActiveTime: Date;
|
|
4448
|
+
note: string;
|
|
4449
|
+
}
|
|
4450
|
+
|
|
4353
4451
|
interface FindOverviewInstagramHistoryAutoSyncDto {
|
|
4354
4452
|
totalAccounts: number;
|
|
4355
4453
|
totalPC: number;
|
|
@@ -4738,16 +4836,7 @@ interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, Omit<IFilterBas
|
|
|
4738
4836
|
timeAction: [Date, Date];
|
|
4739
4837
|
}
|
|
4740
4838
|
|
|
4741
|
-
interface FindInstagramAccountRawDto extends IFindBaseDto
|
|
4742
|
-
idea: string | IManagerWork;
|
|
4743
|
-
niche: string | IManagerWork;
|
|
4744
|
-
type: ETypeManagerWorkClassify;
|
|
4745
|
-
pcInfo: {
|
|
4746
|
-
name: string;
|
|
4747
|
-
department: string;
|
|
4748
|
-
leader: string;
|
|
4749
|
-
member: string;
|
|
4750
|
-
};
|
|
4839
|
+
interface FindInstagramAccountRawDto extends IFindBaseDto {
|
|
4751
4840
|
deviceInfo: {
|
|
4752
4841
|
key: string;
|
|
4753
4842
|
name: string;
|
|
@@ -4771,31 +4860,21 @@ interface FindInstagramAccountRawDto extends IFindBaseDto, IInstagramAccountRaw
|
|
|
4771
4860
|
};
|
|
4772
4861
|
timeUpdate: Date;
|
|
4773
4862
|
};
|
|
4774
|
-
|
|
4775
|
-
|
|
4776
|
-
|
|
4777
|
-
newUrl: string;
|
|
4778
|
-
statusChange: EStatusChangeInfo;
|
|
4779
|
-
timeChange: Date;
|
|
4780
|
-
};
|
|
4781
|
-
coverInfo: {
|
|
4782
|
-
prompt: string;
|
|
4783
|
-
url: string;
|
|
4784
|
-
newUrl: string;
|
|
4785
|
-
statusChange: EStatusChangeInfo;
|
|
4786
|
-
timeChange: Date;
|
|
4787
|
-
};
|
|
4788
|
-
bioContentInfo: {
|
|
4789
|
-
content: string;
|
|
4790
|
-
newContent: string;
|
|
4791
|
-
statusChange: EStatusChangeInfo;
|
|
4792
|
-
timeChange: Date;
|
|
4863
|
+
statusAutoSyncAccount: {
|
|
4864
|
+
statusSync: EStatusAccountSocialSync;
|
|
4865
|
+
timeSync: Date;
|
|
4793
4866
|
};
|
|
4794
|
-
|
|
4795
|
-
|
|
4796
|
-
|
|
4867
|
+
idea: string | IManagerWork;
|
|
4868
|
+
niche: string | IManagerWork;
|
|
4869
|
+
type: ETypeManagerWorkClassify;
|
|
4870
|
+
folderImage: {
|
|
4871
|
+
folderName: string;
|
|
4872
|
+
statusChange: string;
|
|
4797
4873
|
timeChange: Date;
|
|
4798
4874
|
};
|
|
4875
|
+
accountGroup: string | IAccountSocialGroup;
|
|
4876
|
+
typeSocial: ETypeSocial;
|
|
4877
|
+
accountID: string;
|
|
4799
4878
|
historyUserName: {
|
|
4800
4879
|
old: string;
|
|
4801
4880
|
new: string;
|
|
@@ -4808,7 +4887,7 @@ interface FindInstagramAccountRawDto extends IFindBaseDto, IInstagramAccountRaw
|
|
|
4808
4887
|
statusChange: EStatusChangeInfo;
|
|
4809
4888
|
timeChange: Date;
|
|
4810
4889
|
};
|
|
4811
|
-
|
|
4890
|
+
historyPassword: {
|
|
4812
4891
|
old: string;
|
|
4813
4892
|
new: string;
|
|
4814
4893
|
statusChange: EStatusChangeInfo;
|
|
@@ -4820,35 +4899,61 @@ interface FindInstagramAccountRawDto extends IFindBaseDto, IInstagramAccountRaw
|
|
|
4820
4899
|
statusChange: EStatusChangeInfo;
|
|
4821
4900
|
timeChange: Date;
|
|
4822
4901
|
};
|
|
4823
|
-
|
|
4902
|
+
historyEmail: {
|
|
4824
4903
|
old: string;
|
|
4825
4904
|
new: string;
|
|
4826
4905
|
statusChange: EStatusChangeInfo;
|
|
4827
4906
|
timeChange: Date;
|
|
4828
4907
|
};
|
|
4908
|
+
loginSocialStatus: {
|
|
4909
|
+
status: EStatusAccountSocialLogin;
|
|
4910
|
+
time: Date;
|
|
4911
|
+
};
|
|
4829
4912
|
accountSetting: {
|
|
4830
4913
|
typeAccount: ETypeAccountInstagramSetting;
|
|
4831
4914
|
timeChangeTypeAccount: Date;
|
|
4832
4915
|
statusAccount: EStatusAccountSocialSetting;
|
|
4833
4916
|
timeChangeAccount: Date;
|
|
4834
4917
|
};
|
|
4918
|
+
avatarInfo: {
|
|
4919
|
+
prompt: string;
|
|
4920
|
+
url: string;
|
|
4921
|
+
statusChange: EStatusChangeInfo;
|
|
4922
|
+
timeChange: Date;
|
|
4923
|
+
};
|
|
4924
|
+
coverInfo: {
|
|
4925
|
+
prompt: string;
|
|
4926
|
+
url: string;
|
|
4927
|
+
statusChange: EStatusChangeInfo;
|
|
4928
|
+
timeChange: Date;
|
|
4929
|
+
};
|
|
4930
|
+
bioContentInfo: {
|
|
4931
|
+
content: string;
|
|
4932
|
+
statusChange: EStatusChangeInfo;
|
|
4933
|
+
timeChange: Date;
|
|
4934
|
+
};
|
|
4935
|
+
bioLinkInfo: {
|
|
4936
|
+
listLink: string[];
|
|
4937
|
+
statusChange: EStatusChangeInfo;
|
|
4938
|
+
timeChange: Date;
|
|
4939
|
+
};
|
|
4835
4940
|
loginEmailInfo: {
|
|
4836
4941
|
email: string;
|
|
4837
4942
|
emailPassword: string;
|
|
4838
4943
|
email2FA: string;
|
|
4839
4944
|
emailRecover: string;
|
|
4840
|
-
|
|
4841
|
-
|
|
4945
|
+
};
|
|
4946
|
+
loginEmailStatus: {
|
|
4947
|
+
status: EStatusAccountSocialLoginEmail;
|
|
4948
|
+
time: Date;
|
|
4842
4949
|
};
|
|
4843
4950
|
importInfo: {
|
|
4951
|
+
sheetUrl: string;
|
|
4952
|
+
sheetName: string;
|
|
4953
|
+
typeImport: string;
|
|
4844
4954
|
timeImport: Date;
|
|
4845
4955
|
statusImport: EStatusAccountSocialImport;
|
|
4846
4956
|
};
|
|
4847
|
-
folderImage: {
|
|
4848
|
-
folderName: string;
|
|
4849
|
-
status: string;
|
|
4850
|
-
time: Date;
|
|
4851
|
-
};
|
|
4852
4957
|
}
|
|
4853
4958
|
interface FilterInstagramAccountRawDto extends IFilterBaseDto {
|
|
4854
4959
|
accountGroup: string[];
|
|
@@ -5038,11 +5143,22 @@ interface AutoFillAssignedMemberInstagramAccountRawDto {
|
|
|
5038
5143
|
}
|
|
5039
5144
|
|
|
5040
5145
|
interface FindInstagramAccountRunDto extends IFindBaseDto {
|
|
5146
|
+
typeSocial: ETypeSocial;
|
|
5041
5147
|
idea: string | IManagerWork;
|
|
5042
5148
|
niche: string | IManagerWork;
|
|
5043
5149
|
type: ETypeManagerWorkClassify;
|
|
5044
|
-
|
|
5045
|
-
|
|
5150
|
+
importInfo: {
|
|
5151
|
+
sheetUrl: string;
|
|
5152
|
+
sheetName: string;
|
|
5153
|
+
typeImport: string;
|
|
5154
|
+
timeImport: Date;
|
|
5155
|
+
statusImport: EStatusAccountSocialImport;
|
|
5156
|
+
};
|
|
5157
|
+
runStartDateTime: Date;
|
|
5158
|
+
runEndDateTime: Date;
|
|
5159
|
+
statusRun: EStatusAccountSocialRun;
|
|
5160
|
+
statusConnectDevice: EStatusDeviceConnectPC;
|
|
5161
|
+
noteConnectDevice: string;
|
|
5046
5162
|
pcInfo: {
|
|
5047
5163
|
name: string;
|
|
5048
5164
|
department: string;
|
|
@@ -5082,9 +5198,84 @@ interface FindInstagramAccountRunDto extends IFindBaseDto {
|
|
|
5082
5198
|
status: EStatusAccountVPN;
|
|
5083
5199
|
};
|
|
5084
5200
|
folderImage: string;
|
|
5201
|
+
accountGroup: string;
|
|
5202
|
+
bioInfo: string;
|
|
5203
|
+
bioLinksInfo: string[];
|
|
5085
5204
|
totalPosts: number;
|
|
5086
|
-
|
|
5087
|
-
|
|
5205
|
+
totalFollowers: number;
|
|
5206
|
+
totalFollowings: number;
|
|
5207
|
+
historyUserName: {
|
|
5208
|
+
old: string;
|
|
5209
|
+
new: string;
|
|
5210
|
+
statusChange: EStatusChangeInfo;
|
|
5211
|
+
timeChange: Date;
|
|
5212
|
+
};
|
|
5213
|
+
historyFullname: {
|
|
5214
|
+
old: string;
|
|
5215
|
+
new: string;
|
|
5216
|
+
statusChange: EStatusChangeInfo;
|
|
5217
|
+
timeChange: Date;
|
|
5218
|
+
};
|
|
5219
|
+
historyPassword: {
|
|
5220
|
+
old: string;
|
|
5221
|
+
new: string;
|
|
5222
|
+
statusChange: EStatusChangeInfo;
|
|
5223
|
+
timeChange: Date;
|
|
5224
|
+
};
|
|
5225
|
+
history2FA: {
|
|
5226
|
+
old: string;
|
|
5227
|
+
new: string;
|
|
5228
|
+
statusChange: EStatusChangeInfo;
|
|
5229
|
+
timeChange: Date;
|
|
5230
|
+
};
|
|
5231
|
+
historyEmail: {
|
|
5232
|
+
old: string;
|
|
5233
|
+
new: string;
|
|
5234
|
+
statusChange: EStatusChangeInfo;
|
|
5235
|
+
timeChange: Date;
|
|
5236
|
+
};
|
|
5237
|
+
loginSocialStatus: {
|
|
5238
|
+
status: EStatusAccountSocialLogin;
|
|
5239
|
+
time: Date;
|
|
5240
|
+
};
|
|
5241
|
+
accountSetting: {
|
|
5242
|
+
typeAccount: ETypeAccountInstagramSetting;
|
|
5243
|
+
timeChangeTypeAccount: Date;
|
|
5244
|
+
statusAccount: EStatusAccountSocialSetting;
|
|
5245
|
+
timeChangeAccount: Date;
|
|
5246
|
+
};
|
|
5247
|
+
avatarInfo: {
|
|
5248
|
+
prompt: string;
|
|
5249
|
+
url: string;
|
|
5250
|
+
statusChange: EStatusChangeInfo;
|
|
5251
|
+
timeChange: Date;
|
|
5252
|
+
};
|
|
5253
|
+
coverInfo: {
|
|
5254
|
+
prompt: string;
|
|
5255
|
+
url: string;
|
|
5256
|
+
statusChange: EStatusChangeInfo;
|
|
5257
|
+
timeChange: Date;
|
|
5258
|
+
};
|
|
5259
|
+
bioContentInfo: {
|
|
5260
|
+
content: string;
|
|
5261
|
+
statusChange: EStatusChangeInfo;
|
|
5262
|
+
timeChange: Date;
|
|
5263
|
+
};
|
|
5264
|
+
bioLinkInfo: {
|
|
5265
|
+
listLink: string[];
|
|
5266
|
+
statusChange: EStatusChangeInfo;
|
|
5267
|
+
timeChange: Date;
|
|
5268
|
+
};
|
|
5269
|
+
loginEmailInfo: {
|
|
5270
|
+
email: string;
|
|
5271
|
+
emailPassword: string;
|
|
5272
|
+
email2FA: string;
|
|
5273
|
+
emailRecover: string;
|
|
5274
|
+
};
|
|
5275
|
+
loginEmailStatus: {
|
|
5276
|
+
status: EStatusAccountSocialLoginEmail;
|
|
5277
|
+
time: Date;
|
|
5278
|
+
};
|
|
5088
5279
|
}
|
|
5089
5280
|
interface FilterInstagramAccountRunDto extends IFilterBaseDto {
|
|
5090
5281
|
idea: string[];
|
|
@@ -10052,12 +10243,10 @@ interface IThreadsAccountRun extends IBaseModel, ITrackingModel<IUser> {
|
|
|
10052
10243
|
note: string;
|
|
10053
10244
|
}
|
|
10054
10245
|
|
|
10055
|
-
interface IThreadsAccountRaw extends IBaseModel,
|
|
10246
|
+
interface IThreadsAccountRaw extends IBaseModel, ITrackingModel<IUser> {
|
|
10056
10247
|
accountInstagram: string | IInstagramAccountRaw;
|
|
10057
|
-
sheetUrl: string;
|
|
10058
|
-
sheetName: string;
|
|
10059
10248
|
group: IAccountSocialGroup | string;
|
|
10060
|
-
accountID:
|
|
10249
|
+
accountID: string;
|
|
10061
10250
|
nameAppCloneSocial: string;
|
|
10062
10251
|
accountDeviceTypeAppClone: string;
|
|
10063
10252
|
accountDeviceNameAppClone: string;
|
|
@@ -10065,7 +10254,6 @@ interface IThreadsAccountRaw extends IBaseModel, IAccountSocialBase, ITrackingMo
|
|
|
10065
10254
|
niche: string | IManagerWork;
|
|
10066
10255
|
type: ETypeManagerWorkClassify;
|
|
10067
10256
|
pc: IPC | string;
|
|
10068
|
-
deviceKey: string;
|
|
10069
10257
|
device: IDevice | string;
|
|
10070
10258
|
timeImport: Date;
|
|
10071
10259
|
statusImport: EStatusAccountSocialImport;
|
|
@@ -10076,17 +10264,13 @@ interface IThreadsAccountRaw extends IBaseModel, IAccountSocialBase, ITrackingMo
|
|
|
10076
10264
|
folderNameImage: string;
|
|
10077
10265
|
statusFolderNameImage: EStatusAccountSocialFolderName;
|
|
10078
10266
|
timeFolderNameImage: Date;
|
|
10079
|
-
statusLogin: EStatusAccountSocialLogin;
|
|
10080
|
-
timeLogin: Date;
|
|
10081
10267
|
promptAvatar: string;
|
|
10082
10268
|
oldAvatar: string | IFile;
|
|
10083
10269
|
newAvatar: string | IFile;
|
|
10084
10270
|
statusChangeAvatar: EStatusChangeInfo;
|
|
10085
10271
|
timeChangeAvatar: Date;
|
|
10086
|
-
|
|
10087
|
-
|
|
10088
|
-
statusChangeGroup: EStatusChangeInfo;
|
|
10089
|
-
timeChangeGroup: Date;
|
|
10272
|
+
statusLogin: EStatusAccountSocialLogin;
|
|
10273
|
+
timeLogin: Date;
|
|
10090
10274
|
statusLoginEmail: EStatusAccountSocialLoginEmail;
|
|
10091
10275
|
timeLoginEmail: Date;
|
|
10092
10276
|
interestThreads: string;
|
|
@@ -11037,7 +11221,7 @@ interface IAccountSocialBase extends IBaseModel, ITrackingModel<IUser> {
|
|
|
11037
11221
|
typeSocial: ETypeSocial;
|
|
11038
11222
|
sheetUrl: string;
|
|
11039
11223
|
sheetName: string;
|
|
11040
|
-
accountID:
|
|
11224
|
+
accountID: string;
|
|
11041
11225
|
nameAppCloneSocial: string;
|
|
11042
11226
|
accountDeviceTypeAppClone: string;
|
|
11043
11227
|
accountDeviceNameAppClone: string;
|
package/dist/index.js
CHANGED
|
@@ -1323,7 +1323,7 @@ var EStatusChangeInfo = /* @__PURE__ */ ((EStatusChangeInfo2) => {
|
|
|
1323
1323
|
EStatusChangeInfo2["Done"] = "Done";
|
|
1324
1324
|
EStatusChangeInfo2["Failed"] = "Failed";
|
|
1325
1325
|
EStatusChangeInfo2["Pending"] = "Pending";
|
|
1326
|
-
EStatusChangeInfo2["
|
|
1326
|
+
EStatusChangeInfo2["WaitingTask"] = "WaitingTask";
|
|
1327
1327
|
EStatusChangeInfo2["NA"] = "N/A";
|
|
1328
1328
|
return EStatusChangeInfo2;
|
|
1329
1329
|
})(EStatusChangeInfo || {});
|