automation-lib 5.1.374 → 5.1.376
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 +22 -4
- package/dist/index.d.ts +22 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2920,14 +2920,23 @@ interface IInstagramAccountRun extends IBaseModel, IAccountSocialBase, ITracking
|
|
|
2920
2920
|
oldAvatar: string | IFile;
|
|
2921
2921
|
newAvatar: string | IFile;
|
|
2922
2922
|
statusChangeAvatar: EStatusChangeInfo;
|
|
2923
|
+
timeChangeAvatar: Date;
|
|
2923
2924
|
promptCover: string;
|
|
2924
2925
|
oldCover: string | IFile;
|
|
2925
2926
|
newCover: string | IFile;
|
|
2926
2927
|
statusChangeCover: EStatusChangeInfo;
|
|
2927
|
-
|
|
2928
|
-
|
|
2928
|
+
timeChangeCover: Date;
|
|
2929
|
+
oldBioContent: string;
|
|
2930
|
+
newBioContent: string;
|
|
2931
|
+
statusChangeBioContent: EStatusChangeInfo;
|
|
2932
|
+
timeChangeBioContent: Date;
|
|
2933
|
+
oldListBioLink: string[];
|
|
2934
|
+
newListBioLink: string[];
|
|
2935
|
+
statusChangeBioLink: EStatusChangeInfo;
|
|
2936
|
+
timeChangeBioLink: Date;
|
|
2929
2937
|
typeAccountSetting: ETypeAccountInstagramSetting;
|
|
2930
2938
|
statusAccountSetting: EStatusAccountSocialSetting;
|
|
2939
|
+
timeChangeAccountSetting: Date;
|
|
2931
2940
|
oldGroup: string | IAccountSocialGroup;
|
|
2932
2941
|
newGroup: string | IAccountSocialGroup;
|
|
2933
2942
|
statusChangeGroup: EStatusChangeInfo;
|
|
@@ -2935,24 +2944,30 @@ interface IInstagramAccountRun extends IBaseModel, IAccountSocialBase, ITracking
|
|
|
2935
2944
|
oldUsername: string;
|
|
2936
2945
|
newUsername: string;
|
|
2937
2946
|
statusChangeUsername: EStatusChangeInfo;
|
|
2947
|
+
timeChangeUsername: Date;
|
|
2938
2948
|
oldFullname: string;
|
|
2939
2949
|
newFullname: string;
|
|
2940
2950
|
statusChangeFullname: EStatusChangeInfo;
|
|
2951
|
+
timeChangeFullname: Date;
|
|
2941
2952
|
oldEmail: string;
|
|
2942
2953
|
newEmail: string;
|
|
2943
2954
|
statusChangeEmail: EStatusChangeInfo;
|
|
2955
|
+
timeChangeEmail: Date;
|
|
2944
2956
|
old2FA: string;
|
|
2945
2957
|
new2FA: string;
|
|
2946
2958
|
statusChange2fa: EStatusChangeInfo;
|
|
2959
|
+
timeChange2FA: Date;
|
|
2947
2960
|
oldPassword: string;
|
|
2948
2961
|
newPassword: string;
|
|
2949
2962
|
statusChangePassword: EStatusChangeInfo;
|
|
2963
|
+
timeChangePassword: Date;
|
|
2950
2964
|
statusLogin: EStatusAccountSocialLogin;
|
|
2951
2965
|
email: string;
|
|
2952
2966
|
emailPassword: string;
|
|
2953
2967
|
email2FA: string;
|
|
2954
2968
|
emailRecover: string;
|
|
2955
2969
|
statusLoginEmail: EStatusAccountSocialLoginEmail;
|
|
2970
|
+
timeLoginEmail: Date;
|
|
2956
2971
|
note: string;
|
|
2957
2972
|
timeLastUsed: Date;
|
|
2958
2973
|
lastUserUsed: string | IUser;
|
|
@@ -3018,10 +3033,12 @@ interface IInstagramAccountRaw extends IBaseModel, IAccountSocialBase, ITracking
|
|
|
3018
3033
|
newPassword: string;
|
|
3019
3034
|
statusChangePassword: EStatusChangeInfo;
|
|
3020
3035
|
timeChangePassword: Date;
|
|
3021
|
-
|
|
3036
|
+
oldBioContent: string;
|
|
3037
|
+
newBioContent: string;
|
|
3022
3038
|
statusChangeBioContent: EStatusChangeInfo;
|
|
3023
3039
|
timeChangeBioContent: Date;
|
|
3024
|
-
|
|
3040
|
+
oldListBioLink: string[];
|
|
3041
|
+
newListBioLink: string[];
|
|
3025
3042
|
statusChangeBioLink: EStatusChangeInfo;
|
|
3026
3043
|
timeChangeBioLink: Date;
|
|
3027
3044
|
email: string;
|
|
@@ -6170,6 +6187,7 @@ interface FindInstagramAccountRawDto extends IFindBaseDto, IInstagramAccountRaw
|
|
|
6170
6187
|
};
|
|
6171
6188
|
bioContentInfo: {
|
|
6172
6189
|
content: string;
|
|
6190
|
+
newContent: string;
|
|
6173
6191
|
statusChange: EStatusChangeInfo;
|
|
6174
6192
|
timeChange: Date;
|
|
6175
6193
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -2920,14 +2920,23 @@ interface IInstagramAccountRun extends IBaseModel, IAccountSocialBase, ITracking
|
|
|
2920
2920
|
oldAvatar: string | IFile;
|
|
2921
2921
|
newAvatar: string | IFile;
|
|
2922
2922
|
statusChangeAvatar: EStatusChangeInfo;
|
|
2923
|
+
timeChangeAvatar: Date;
|
|
2923
2924
|
promptCover: string;
|
|
2924
2925
|
oldCover: string | IFile;
|
|
2925
2926
|
newCover: string | IFile;
|
|
2926
2927
|
statusChangeCover: EStatusChangeInfo;
|
|
2927
|
-
|
|
2928
|
-
|
|
2928
|
+
timeChangeCover: Date;
|
|
2929
|
+
oldBioContent: string;
|
|
2930
|
+
newBioContent: string;
|
|
2931
|
+
statusChangeBioContent: EStatusChangeInfo;
|
|
2932
|
+
timeChangeBioContent: Date;
|
|
2933
|
+
oldListBioLink: string[];
|
|
2934
|
+
newListBioLink: string[];
|
|
2935
|
+
statusChangeBioLink: EStatusChangeInfo;
|
|
2936
|
+
timeChangeBioLink: Date;
|
|
2929
2937
|
typeAccountSetting: ETypeAccountInstagramSetting;
|
|
2930
2938
|
statusAccountSetting: EStatusAccountSocialSetting;
|
|
2939
|
+
timeChangeAccountSetting: Date;
|
|
2931
2940
|
oldGroup: string | IAccountSocialGroup;
|
|
2932
2941
|
newGroup: string | IAccountSocialGroup;
|
|
2933
2942
|
statusChangeGroup: EStatusChangeInfo;
|
|
@@ -2935,24 +2944,30 @@ interface IInstagramAccountRun extends IBaseModel, IAccountSocialBase, ITracking
|
|
|
2935
2944
|
oldUsername: string;
|
|
2936
2945
|
newUsername: string;
|
|
2937
2946
|
statusChangeUsername: EStatusChangeInfo;
|
|
2947
|
+
timeChangeUsername: Date;
|
|
2938
2948
|
oldFullname: string;
|
|
2939
2949
|
newFullname: string;
|
|
2940
2950
|
statusChangeFullname: EStatusChangeInfo;
|
|
2951
|
+
timeChangeFullname: Date;
|
|
2941
2952
|
oldEmail: string;
|
|
2942
2953
|
newEmail: string;
|
|
2943
2954
|
statusChangeEmail: EStatusChangeInfo;
|
|
2955
|
+
timeChangeEmail: Date;
|
|
2944
2956
|
old2FA: string;
|
|
2945
2957
|
new2FA: string;
|
|
2946
2958
|
statusChange2fa: EStatusChangeInfo;
|
|
2959
|
+
timeChange2FA: Date;
|
|
2947
2960
|
oldPassword: string;
|
|
2948
2961
|
newPassword: string;
|
|
2949
2962
|
statusChangePassword: EStatusChangeInfo;
|
|
2963
|
+
timeChangePassword: Date;
|
|
2950
2964
|
statusLogin: EStatusAccountSocialLogin;
|
|
2951
2965
|
email: string;
|
|
2952
2966
|
emailPassword: string;
|
|
2953
2967
|
email2FA: string;
|
|
2954
2968
|
emailRecover: string;
|
|
2955
2969
|
statusLoginEmail: EStatusAccountSocialLoginEmail;
|
|
2970
|
+
timeLoginEmail: Date;
|
|
2956
2971
|
note: string;
|
|
2957
2972
|
timeLastUsed: Date;
|
|
2958
2973
|
lastUserUsed: string | IUser;
|
|
@@ -3018,10 +3033,12 @@ interface IInstagramAccountRaw extends IBaseModel, IAccountSocialBase, ITracking
|
|
|
3018
3033
|
newPassword: string;
|
|
3019
3034
|
statusChangePassword: EStatusChangeInfo;
|
|
3020
3035
|
timeChangePassword: Date;
|
|
3021
|
-
|
|
3036
|
+
oldBioContent: string;
|
|
3037
|
+
newBioContent: string;
|
|
3022
3038
|
statusChangeBioContent: EStatusChangeInfo;
|
|
3023
3039
|
timeChangeBioContent: Date;
|
|
3024
|
-
|
|
3040
|
+
oldListBioLink: string[];
|
|
3041
|
+
newListBioLink: string[];
|
|
3025
3042
|
statusChangeBioLink: EStatusChangeInfo;
|
|
3026
3043
|
timeChangeBioLink: Date;
|
|
3027
3044
|
email: string;
|
|
@@ -6170,6 +6187,7 @@ interface FindInstagramAccountRawDto extends IFindBaseDto, IInstagramAccountRaw
|
|
|
6170
6187
|
};
|
|
6171
6188
|
bioContentInfo: {
|
|
6172
6189
|
content: string;
|
|
6190
|
+
newContent: string;
|
|
6173
6191
|
statusChange: EStatusChangeInfo;
|
|
6174
6192
|
timeChange: Date;
|
|
6175
6193
|
};
|