automation-lib 5.1.363 → 5.1.365
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 +215 -61
- package/dist/index.d.ts +215 -61
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4831,6 +4831,9 @@ interface FilterThreadsHistoryChangeDto extends IFilterBaseDto, IFilterBaseAccou
|
|
|
4831
4831
|
}
|
|
4832
4832
|
|
|
4833
4833
|
interface FindThreadsAccountRawDto extends IFindBaseDto, IThreadsAccountRaw {
|
|
4834
|
+
idea: string | IManagerWork;
|
|
4835
|
+
niche: string | IManagerWork;
|
|
4836
|
+
type: ETypeManagerWorkClassify;
|
|
4834
4837
|
deviceInfo: {
|
|
4835
4838
|
key: string;
|
|
4836
4839
|
name: string;
|
|
@@ -4854,7 +4857,6 @@ interface FindThreadsAccountRawDto extends IFindBaseDto, IThreadsAccountRaw {
|
|
|
4854
4857
|
};
|
|
4855
4858
|
timeUpdate: Date;
|
|
4856
4859
|
};
|
|
4857
|
-
type: ETypeManagerWorkClassify;
|
|
4858
4860
|
folderImage: {
|
|
4859
4861
|
folderName: string;
|
|
4860
4862
|
status: string;
|
|
@@ -5031,6 +5033,8 @@ interface AutoFillThreadsAccountRawDto {
|
|
|
5031
5033
|
}
|
|
5032
5034
|
|
|
5033
5035
|
interface FindThreadsAccountRunDto extends IFindBaseDto, IThreadsAccountRun {
|
|
5036
|
+
idea: string | IManagerWork;
|
|
5037
|
+
niche: string | IManagerWork;
|
|
5034
5038
|
type: ETypeManagerWorkClassify;
|
|
5035
5039
|
pcInfo: {
|
|
5036
5040
|
name: string;
|
|
@@ -5736,24 +5740,50 @@ interface FindOverviewInstagramHistoryAutoSyncDto {
|
|
|
5736
5740
|
};
|
|
5737
5741
|
}
|
|
5738
5742
|
interface FindInstagramHistoryAutoSyncDto extends IFindBaseDto, IInstagramHistoryAutoSync {
|
|
5739
|
-
|
|
5740
|
-
|
|
5741
|
-
accountFullname: string;
|
|
5742
|
-
accountDeviceType: string;
|
|
5743
|
-
accountDeviceName: string;
|
|
5743
|
+
loginStatus: EStatusAccountSocialLogin;
|
|
5744
|
+
statusSyncAccount?: EStatusAccountSocialSync;
|
|
5744
5745
|
idea: string;
|
|
5745
5746
|
niche: string;
|
|
5746
5747
|
type: ETypeManagerWorkClassify;
|
|
5747
|
-
|
|
5748
|
-
|
|
5749
|
-
|
|
5750
|
-
|
|
5751
|
-
|
|
5752
|
-
|
|
5753
|
-
|
|
5754
|
-
|
|
5755
|
-
|
|
5756
|
-
|
|
5748
|
+
sheetUrl: string;
|
|
5749
|
+
sheetName: string;
|
|
5750
|
+
pcInfo: {
|
|
5751
|
+
name: string;
|
|
5752
|
+
department: string;
|
|
5753
|
+
leader: string;
|
|
5754
|
+
member: string;
|
|
5755
|
+
};
|
|
5756
|
+
deviceInfo: {
|
|
5757
|
+
key: string;
|
|
5758
|
+
name: string;
|
|
5759
|
+
type: ETypeDeviceOS;
|
|
5760
|
+
typeAppClone: string;
|
|
5761
|
+
nameAppClone: string;
|
|
5762
|
+
nameAppCloneSocial: string;
|
|
5763
|
+
};
|
|
5764
|
+
groupAccount: {
|
|
5765
|
+
oldGroup: string;
|
|
5766
|
+
newGroup: string;
|
|
5767
|
+
status: string;
|
|
5768
|
+
};
|
|
5769
|
+
historyUserName: {
|
|
5770
|
+
old: string;
|
|
5771
|
+
new: string;
|
|
5772
|
+
statusChange: string;
|
|
5773
|
+
timeChange: Date;
|
|
5774
|
+
};
|
|
5775
|
+
historyFullname: {
|
|
5776
|
+
old: string;
|
|
5777
|
+
new: string;
|
|
5778
|
+
statusChange: string;
|
|
5779
|
+
timeChange: Date;
|
|
5780
|
+
};
|
|
5781
|
+
emailInfo: {
|
|
5782
|
+
email: string;
|
|
5783
|
+
emailPassword: string;
|
|
5784
|
+
email2FA: string;
|
|
5785
|
+
emailRecover: string;
|
|
5786
|
+
};
|
|
5757
5787
|
}
|
|
5758
5788
|
interface FilterInstagramHistoryAutoSyncDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
5759
5789
|
team: string[];
|
|
@@ -5794,24 +5824,93 @@ interface FindOverviewInstagramHistoryChangeInfoDto {
|
|
|
5794
5824
|
};
|
|
5795
5825
|
}
|
|
5796
5826
|
interface FindInstagramHistoryChangeInfoDto extends IFindBaseDto, IInstagramHistoryChangeInfo {
|
|
5797
|
-
|
|
5798
|
-
accountUsername: string;
|
|
5799
|
-
accountFullname: string;
|
|
5800
|
-
accountDeviceType: string;
|
|
5801
|
-
accountDeviceName: string;
|
|
5827
|
+
changeType: 'AVATAR' | 'COVER' | 'USERNAME' | 'FULLNAME' | 'EMAIL' | 'PASSWORD' | '2FA' | 'BIO' | 'ACCOUNT_SETTING';
|
|
5802
5828
|
idea: string;
|
|
5803
5829
|
niche: string;
|
|
5804
5830
|
type: ETypeManagerWorkClassify;
|
|
5805
|
-
|
|
5806
|
-
|
|
5807
|
-
|
|
5808
|
-
|
|
5809
|
-
|
|
5810
|
-
|
|
5811
|
-
|
|
5812
|
-
|
|
5813
|
-
|
|
5814
|
-
|
|
5831
|
+
sheetUrl: string;
|
|
5832
|
+
sheetName: string;
|
|
5833
|
+
pcInfo: {
|
|
5834
|
+
name: string;
|
|
5835
|
+
department: string;
|
|
5836
|
+
leader: string;
|
|
5837
|
+
member: string;
|
|
5838
|
+
};
|
|
5839
|
+
deviceInfo: {
|
|
5840
|
+
key: string;
|
|
5841
|
+
name: string;
|
|
5842
|
+
type: ETypeDeviceOS;
|
|
5843
|
+
typeAppClone: string;
|
|
5844
|
+
nameAppClone: string;
|
|
5845
|
+
nameAppCloneSocial: string;
|
|
5846
|
+
};
|
|
5847
|
+
groupAccount: {
|
|
5848
|
+
oldGroup: string;
|
|
5849
|
+
newGroup: string;
|
|
5850
|
+
status: string;
|
|
5851
|
+
};
|
|
5852
|
+
historyUserName: {
|
|
5853
|
+
old: string;
|
|
5854
|
+
new: string;
|
|
5855
|
+
statusChange: string;
|
|
5856
|
+
timeChange: Date;
|
|
5857
|
+
};
|
|
5858
|
+
historyFullname: {
|
|
5859
|
+
old: string;
|
|
5860
|
+
new: string;
|
|
5861
|
+
statusChange: string;
|
|
5862
|
+
timeChange: Date;
|
|
5863
|
+
};
|
|
5864
|
+
historyPassword: {
|
|
5865
|
+
old: string;
|
|
5866
|
+
new: string;
|
|
5867
|
+
statusChange: string;
|
|
5868
|
+
timeChange: Date;
|
|
5869
|
+
};
|
|
5870
|
+
history2FA: {
|
|
5871
|
+
old: string;
|
|
5872
|
+
new: string;
|
|
5873
|
+
statusChange: string;
|
|
5874
|
+
timeChange: Date;
|
|
5875
|
+
};
|
|
5876
|
+
historyEmail: {
|
|
5877
|
+
old: string;
|
|
5878
|
+
new: string;
|
|
5879
|
+
statusChange: string;
|
|
5880
|
+
timeChange: Date;
|
|
5881
|
+
};
|
|
5882
|
+
historyBio: {
|
|
5883
|
+
old: string;
|
|
5884
|
+
new: string;
|
|
5885
|
+
statusChange: string;
|
|
5886
|
+
timeChange: Date;
|
|
5887
|
+
};
|
|
5888
|
+
historyAvatar: {
|
|
5889
|
+
prompt: string;
|
|
5890
|
+
old: string;
|
|
5891
|
+
new: string;
|
|
5892
|
+
statusChange: string;
|
|
5893
|
+
timeChange: Date;
|
|
5894
|
+
};
|
|
5895
|
+
historyCover: {
|
|
5896
|
+
prompt: string;
|
|
5897
|
+
old: string;
|
|
5898
|
+
new: string;
|
|
5899
|
+
statusChange: string;
|
|
5900
|
+
timeChange: Date;
|
|
5901
|
+
};
|
|
5902
|
+
accountSetting: {
|
|
5903
|
+
typeAccount: ETypeAccountInstagramSetting;
|
|
5904
|
+
timeChangeTypeAccount: Date;
|
|
5905
|
+
statusAccount: EStatusAccountSocialSetting;
|
|
5906
|
+
timeChangeAccount: Date;
|
|
5907
|
+
};
|
|
5908
|
+
emailInfo: {
|
|
5909
|
+
email: string;
|
|
5910
|
+
emailPassword: string;
|
|
5911
|
+
email2FA: string;
|
|
5912
|
+
emailRecover: string;
|
|
5913
|
+
};
|
|
5815
5914
|
}
|
|
5816
5915
|
interface FilterInstagramHistoryChangeInfoDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
5817
5916
|
team: string[];
|
|
@@ -5852,24 +5951,50 @@ interface FindOverviewInstagramHistoryCreateNewDto {
|
|
|
5852
5951
|
};
|
|
5853
5952
|
}
|
|
5854
5953
|
interface FindInstagramHistoryCreateNewDto extends IFindBaseDto, IInstagramHistoryCreateNew {
|
|
5855
|
-
|
|
5856
|
-
|
|
5857
|
-
accountFullname: string;
|
|
5858
|
-
accountDeviceType: string;
|
|
5859
|
-
accountDeviceName: string;
|
|
5954
|
+
folderName: string;
|
|
5955
|
+
model: EAIModelImage;
|
|
5860
5956
|
idea: string;
|
|
5861
5957
|
niche: string;
|
|
5862
5958
|
type: ETypeManagerWorkClassify;
|
|
5863
|
-
|
|
5864
|
-
|
|
5865
|
-
|
|
5866
|
-
|
|
5867
|
-
|
|
5868
|
-
|
|
5869
|
-
|
|
5870
|
-
|
|
5871
|
-
|
|
5872
|
-
|
|
5959
|
+
sheetUrl: string;
|
|
5960
|
+
sheetName: string;
|
|
5961
|
+
pcInfo: {
|
|
5962
|
+
name: string;
|
|
5963
|
+
department: string;
|
|
5964
|
+
leader: string;
|
|
5965
|
+
member: string;
|
|
5966
|
+
};
|
|
5967
|
+
deviceInfo: {
|
|
5968
|
+
key: string;
|
|
5969
|
+
name: string;
|
|
5970
|
+
type: ETypeDeviceOS;
|
|
5971
|
+
typeAppClone: string;
|
|
5972
|
+
nameAppClone: string;
|
|
5973
|
+
nameAppCloneSocial: string;
|
|
5974
|
+
};
|
|
5975
|
+
groupAccount: {
|
|
5976
|
+
oldGroup: string;
|
|
5977
|
+
newGroup: string;
|
|
5978
|
+
status: string;
|
|
5979
|
+
};
|
|
5980
|
+
historyUserName: {
|
|
5981
|
+
old: string;
|
|
5982
|
+
new: string;
|
|
5983
|
+
statusChange: string;
|
|
5984
|
+
timeChange: Date;
|
|
5985
|
+
};
|
|
5986
|
+
historyFullname: {
|
|
5987
|
+
old: string;
|
|
5988
|
+
new: string;
|
|
5989
|
+
statusChange: string;
|
|
5990
|
+
timeChange: Date;
|
|
5991
|
+
};
|
|
5992
|
+
emailInfo: {
|
|
5993
|
+
email: string;
|
|
5994
|
+
emailPassword: string;
|
|
5995
|
+
email2FA: string;
|
|
5996
|
+
emailRecover: string;
|
|
5997
|
+
};
|
|
5873
5998
|
}
|
|
5874
5999
|
interface FilterInstagramHistoryCreateNewDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
5875
6000
|
team: string[];
|
|
@@ -5910,24 +6035,49 @@ interface FindOverviewInstagramHistoryGroupDto {
|
|
|
5910
6035
|
};
|
|
5911
6036
|
}
|
|
5912
6037
|
interface FindInstagramHistoryGroupDto extends IFindBaseDto, IInstagramHistoryGroup {
|
|
5913
|
-
accountID: number;
|
|
5914
|
-
accountUsername: string;
|
|
5915
|
-
accountFullname: string;
|
|
5916
|
-
accountDeviceType: string;
|
|
5917
|
-
accountDeviceName: string;
|
|
5918
6038
|
idea: string;
|
|
5919
6039
|
niche: string;
|
|
5920
6040
|
type: ETypeManagerWorkClassify;
|
|
5921
|
-
|
|
5922
|
-
|
|
5923
|
-
|
|
5924
|
-
|
|
5925
|
-
|
|
5926
|
-
|
|
5927
|
-
|
|
5928
|
-
|
|
5929
|
-
|
|
5930
|
-
|
|
6041
|
+
sheetUrl: string;
|
|
6042
|
+
sheetName: string;
|
|
6043
|
+
statusSyncAccount?: EStatusAccountSocialSync;
|
|
6044
|
+
pcInfo: {
|
|
6045
|
+
name: string;
|
|
6046
|
+
department: string;
|
|
6047
|
+
leader: string;
|
|
6048
|
+
member: string;
|
|
6049
|
+
};
|
|
6050
|
+
deviceInfo: {
|
|
6051
|
+
key: string;
|
|
6052
|
+
name: string;
|
|
6053
|
+
type: ETypeDeviceOS;
|
|
6054
|
+
typeAppClone: string;
|
|
6055
|
+
nameAppClone: string;
|
|
6056
|
+
nameAppCloneSocial: string;
|
|
6057
|
+
};
|
|
6058
|
+
groupAccount: {
|
|
6059
|
+
oldGroup: string;
|
|
6060
|
+
newGroup: string;
|
|
6061
|
+
status: string;
|
|
6062
|
+
};
|
|
6063
|
+
historyUserName: {
|
|
6064
|
+
old: string;
|
|
6065
|
+
new: string;
|
|
6066
|
+
statusChange: string;
|
|
6067
|
+
timeChange: Date;
|
|
6068
|
+
};
|
|
6069
|
+
historyFullname: {
|
|
6070
|
+
old: string;
|
|
6071
|
+
new: string;
|
|
6072
|
+
statusChange: string;
|
|
6073
|
+
timeChange: Date;
|
|
6074
|
+
};
|
|
6075
|
+
emailInfo: {
|
|
6076
|
+
email: string;
|
|
6077
|
+
emailPassword: string;
|
|
6078
|
+
email2FA: string;
|
|
6079
|
+
emailRecover: string;
|
|
6080
|
+
};
|
|
5931
6081
|
}
|
|
5932
6082
|
interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
5933
6083
|
team: string[];
|
|
@@ -5949,6 +6099,8 @@ interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, IFilterBaseAcco
|
|
|
5949
6099
|
}
|
|
5950
6100
|
|
|
5951
6101
|
interface FindInstagramAccountRawDto extends IFindBaseDto, IInstagramAccountRaw {
|
|
6102
|
+
idea: string | IManagerWork;
|
|
6103
|
+
niche: string | IManagerWork;
|
|
5952
6104
|
type: ETypeManagerWorkClassify;
|
|
5953
6105
|
pcInfo: {
|
|
5954
6106
|
name: string;
|
|
@@ -6243,6 +6395,8 @@ interface AutoFillAssignedMemberInstagramAccountRawDto {
|
|
|
6243
6395
|
}
|
|
6244
6396
|
|
|
6245
6397
|
interface FindInstagramAccountRunDto extends IFindBaseDto, IInstagramAccountRun {
|
|
6398
|
+
idea: string | IManagerWork;
|
|
6399
|
+
niche: string | IManagerWork;
|
|
6246
6400
|
type: ETypeManagerWorkClassify;
|
|
6247
6401
|
pcInfo: {
|
|
6248
6402
|
name: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -4831,6 +4831,9 @@ interface FilterThreadsHistoryChangeDto extends IFilterBaseDto, IFilterBaseAccou
|
|
|
4831
4831
|
}
|
|
4832
4832
|
|
|
4833
4833
|
interface FindThreadsAccountRawDto extends IFindBaseDto, IThreadsAccountRaw {
|
|
4834
|
+
idea: string | IManagerWork;
|
|
4835
|
+
niche: string | IManagerWork;
|
|
4836
|
+
type: ETypeManagerWorkClassify;
|
|
4834
4837
|
deviceInfo: {
|
|
4835
4838
|
key: string;
|
|
4836
4839
|
name: string;
|
|
@@ -4854,7 +4857,6 @@ interface FindThreadsAccountRawDto extends IFindBaseDto, IThreadsAccountRaw {
|
|
|
4854
4857
|
};
|
|
4855
4858
|
timeUpdate: Date;
|
|
4856
4859
|
};
|
|
4857
|
-
type: ETypeManagerWorkClassify;
|
|
4858
4860
|
folderImage: {
|
|
4859
4861
|
folderName: string;
|
|
4860
4862
|
status: string;
|
|
@@ -5031,6 +5033,8 @@ interface AutoFillThreadsAccountRawDto {
|
|
|
5031
5033
|
}
|
|
5032
5034
|
|
|
5033
5035
|
interface FindThreadsAccountRunDto extends IFindBaseDto, IThreadsAccountRun {
|
|
5036
|
+
idea: string | IManagerWork;
|
|
5037
|
+
niche: string | IManagerWork;
|
|
5034
5038
|
type: ETypeManagerWorkClassify;
|
|
5035
5039
|
pcInfo: {
|
|
5036
5040
|
name: string;
|
|
@@ -5736,24 +5740,50 @@ interface FindOverviewInstagramHistoryAutoSyncDto {
|
|
|
5736
5740
|
};
|
|
5737
5741
|
}
|
|
5738
5742
|
interface FindInstagramHistoryAutoSyncDto extends IFindBaseDto, IInstagramHistoryAutoSync {
|
|
5739
|
-
|
|
5740
|
-
|
|
5741
|
-
accountFullname: string;
|
|
5742
|
-
accountDeviceType: string;
|
|
5743
|
-
accountDeviceName: string;
|
|
5743
|
+
loginStatus: EStatusAccountSocialLogin;
|
|
5744
|
+
statusSyncAccount?: EStatusAccountSocialSync;
|
|
5744
5745
|
idea: string;
|
|
5745
5746
|
niche: string;
|
|
5746
5747
|
type: ETypeManagerWorkClassify;
|
|
5747
|
-
|
|
5748
|
-
|
|
5749
|
-
|
|
5750
|
-
|
|
5751
|
-
|
|
5752
|
-
|
|
5753
|
-
|
|
5754
|
-
|
|
5755
|
-
|
|
5756
|
-
|
|
5748
|
+
sheetUrl: string;
|
|
5749
|
+
sheetName: string;
|
|
5750
|
+
pcInfo: {
|
|
5751
|
+
name: string;
|
|
5752
|
+
department: string;
|
|
5753
|
+
leader: string;
|
|
5754
|
+
member: string;
|
|
5755
|
+
};
|
|
5756
|
+
deviceInfo: {
|
|
5757
|
+
key: string;
|
|
5758
|
+
name: string;
|
|
5759
|
+
type: ETypeDeviceOS;
|
|
5760
|
+
typeAppClone: string;
|
|
5761
|
+
nameAppClone: string;
|
|
5762
|
+
nameAppCloneSocial: string;
|
|
5763
|
+
};
|
|
5764
|
+
groupAccount: {
|
|
5765
|
+
oldGroup: string;
|
|
5766
|
+
newGroup: string;
|
|
5767
|
+
status: string;
|
|
5768
|
+
};
|
|
5769
|
+
historyUserName: {
|
|
5770
|
+
old: string;
|
|
5771
|
+
new: string;
|
|
5772
|
+
statusChange: string;
|
|
5773
|
+
timeChange: Date;
|
|
5774
|
+
};
|
|
5775
|
+
historyFullname: {
|
|
5776
|
+
old: string;
|
|
5777
|
+
new: string;
|
|
5778
|
+
statusChange: string;
|
|
5779
|
+
timeChange: Date;
|
|
5780
|
+
};
|
|
5781
|
+
emailInfo: {
|
|
5782
|
+
email: string;
|
|
5783
|
+
emailPassword: string;
|
|
5784
|
+
email2FA: string;
|
|
5785
|
+
emailRecover: string;
|
|
5786
|
+
};
|
|
5757
5787
|
}
|
|
5758
5788
|
interface FilterInstagramHistoryAutoSyncDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
5759
5789
|
team: string[];
|
|
@@ -5794,24 +5824,93 @@ interface FindOverviewInstagramHistoryChangeInfoDto {
|
|
|
5794
5824
|
};
|
|
5795
5825
|
}
|
|
5796
5826
|
interface FindInstagramHistoryChangeInfoDto extends IFindBaseDto, IInstagramHistoryChangeInfo {
|
|
5797
|
-
|
|
5798
|
-
accountUsername: string;
|
|
5799
|
-
accountFullname: string;
|
|
5800
|
-
accountDeviceType: string;
|
|
5801
|
-
accountDeviceName: string;
|
|
5827
|
+
changeType: 'AVATAR' | 'COVER' | 'USERNAME' | 'FULLNAME' | 'EMAIL' | 'PASSWORD' | '2FA' | 'BIO' | 'ACCOUNT_SETTING';
|
|
5802
5828
|
idea: string;
|
|
5803
5829
|
niche: string;
|
|
5804
5830
|
type: ETypeManagerWorkClassify;
|
|
5805
|
-
|
|
5806
|
-
|
|
5807
|
-
|
|
5808
|
-
|
|
5809
|
-
|
|
5810
|
-
|
|
5811
|
-
|
|
5812
|
-
|
|
5813
|
-
|
|
5814
|
-
|
|
5831
|
+
sheetUrl: string;
|
|
5832
|
+
sheetName: string;
|
|
5833
|
+
pcInfo: {
|
|
5834
|
+
name: string;
|
|
5835
|
+
department: string;
|
|
5836
|
+
leader: string;
|
|
5837
|
+
member: string;
|
|
5838
|
+
};
|
|
5839
|
+
deviceInfo: {
|
|
5840
|
+
key: string;
|
|
5841
|
+
name: string;
|
|
5842
|
+
type: ETypeDeviceOS;
|
|
5843
|
+
typeAppClone: string;
|
|
5844
|
+
nameAppClone: string;
|
|
5845
|
+
nameAppCloneSocial: string;
|
|
5846
|
+
};
|
|
5847
|
+
groupAccount: {
|
|
5848
|
+
oldGroup: string;
|
|
5849
|
+
newGroup: string;
|
|
5850
|
+
status: string;
|
|
5851
|
+
};
|
|
5852
|
+
historyUserName: {
|
|
5853
|
+
old: string;
|
|
5854
|
+
new: string;
|
|
5855
|
+
statusChange: string;
|
|
5856
|
+
timeChange: Date;
|
|
5857
|
+
};
|
|
5858
|
+
historyFullname: {
|
|
5859
|
+
old: string;
|
|
5860
|
+
new: string;
|
|
5861
|
+
statusChange: string;
|
|
5862
|
+
timeChange: Date;
|
|
5863
|
+
};
|
|
5864
|
+
historyPassword: {
|
|
5865
|
+
old: string;
|
|
5866
|
+
new: string;
|
|
5867
|
+
statusChange: string;
|
|
5868
|
+
timeChange: Date;
|
|
5869
|
+
};
|
|
5870
|
+
history2FA: {
|
|
5871
|
+
old: string;
|
|
5872
|
+
new: string;
|
|
5873
|
+
statusChange: string;
|
|
5874
|
+
timeChange: Date;
|
|
5875
|
+
};
|
|
5876
|
+
historyEmail: {
|
|
5877
|
+
old: string;
|
|
5878
|
+
new: string;
|
|
5879
|
+
statusChange: string;
|
|
5880
|
+
timeChange: Date;
|
|
5881
|
+
};
|
|
5882
|
+
historyBio: {
|
|
5883
|
+
old: string;
|
|
5884
|
+
new: string;
|
|
5885
|
+
statusChange: string;
|
|
5886
|
+
timeChange: Date;
|
|
5887
|
+
};
|
|
5888
|
+
historyAvatar: {
|
|
5889
|
+
prompt: string;
|
|
5890
|
+
old: string;
|
|
5891
|
+
new: string;
|
|
5892
|
+
statusChange: string;
|
|
5893
|
+
timeChange: Date;
|
|
5894
|
+
};
|
|
5895
|
+
historyCover: {
|
|
5896
|
+
prompt: string;
|
|
5897
|
+
old: string;
|
|
5898
|
+
new: string;
|
|
5899
|
+
statusChange: string;
|
|
5900
|
+
timeChange: Date;
|
|
5901
|
+
};
|
|
5902
|
+
accountSetting: {
|
|
5903
|
+
typeAccount: ETypeAccountInstagramSetting;
|
|
5904
|
+
timeChangeTypeAccount: Date;
|
|
5905
|
+
statusAccount: EStatusAccountSocialSetting;
|
|
5906
|
+
timeChangeAccount: Date;
|
|
5907
|
+
};
|
|
5908
|
+
emailInfo: {
|
|
5909
|
+
email: string;
|
|
5910
|
+
emailPassword: string;
|
|
5911
|
+
email2FA: string;
|
|
5912
|
+
emailRecover: string;
|
|
5913
|
+
};
|
|
5815
5914
|
}
|
|
5816
5915
|
interface FilterInstagramHistoryChangeInfoDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
5817
5916
|
team: string[];
|
|
@@ -5852,24 +5951,50 @@ interface FindOverviewInstagramHistoryCreateNewDto {
|
|
|
5852
5951
|
};
|
|
5853
5952
|
}
|
|
5854
5953
|
interface FindInstagramHistoryCreateNewDto extends IFindBaseDto, IInstagramHistoryCreateNew {
|
|
5855
|
-
|
|
5856
|
-
|
|
5857
|
-
accountFullname: string;
|
|
5858
|
-
accountDeviceType: string;
|
|
5859
|
-
accountDeviceName: string;
|
|
5954
|
+
folderName: string;
|
|
5955
|
+
model: EAIModelImage;
|
|
5860
5956
|
idea: string;
|
|
5861
5957
|
niche: string;
|
|
5862
5958
|
type: ETypeManagerWorkClassify;
|
|
5863
|
-
|
|
5864
|
-
|
|
5865
|
-
|
|
5866
|
-
|
|
5867
|
-
|
|
5868
|
-
|
|
5869
|
-
|
|
5870
|
-
|
|
5871
|
-
|
|
5872
|
-
|
|
5959
|
+
sheetUrl: string;
|
|
5960
|
+
sheetName: string;
|
|
5961
|
+
pcInfo: {
|
|
5962
|
+
name: string;
|
|
5963
|
+
department: string;
|
|
5964
|
+
leader: string;
|
|
5965
|
+
member: string;
|
|
5966
|
+
};
|
|
5967
|
+
deviceInfo: {
|
|
5968
|
+
key: string;
|
|
5969
|
+
name: string;
|
|
5970
|
+
type: ETypeDeviceOS;
|
|
5971
|
+
typeAppClone: string;
|
|
5972
|
+
nameAppClone: string;
|
|
5973
|
+
nameAppCloneSocial: string;
|
|
5974
|
+
};
|
|
5975
|
+
groupAccount: {
|
|
5976
|
+
oldGroup: string;
|
|
5977
|
+
newGroup: string;
|
|
5978
|
+
status: string;
|
|
5979
|
+
};
|
|
5980
|
+
historyUserName: {
|
|
5981
|
+
old: string;
|
|
5982
|
+
new: string;
|
|
5983
|
+
statusChange: string;
|
|
5984
|
+
timeChange: Date;
|
|
5985
|
+
};
|
|
5986
|
+
historyFullname: {
|
|
5987
|
+
old: string;
|
|
5988
|
+
new: string;
|
|
5989
|
+
statusChange: string;
|
|
5990
|
+
timeChange: Date;
|
|
5991
|
+
};
|
|
5992
|
+
emailInfo: {
|
|
5993
|
+
email: string;
|
|
5994
|
+
emailPassword: string;
|
|
5995
|
+
email2FA: string;
|
|
5996
|
+
emailRecover: string;
|
|
5997
|
+
};
|
|
5873
5998
|
}
|
|
5874
5999
|
interface FilterInstagramHistoryCreateNewDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
5875
6000
|
team: string[];
|
|
@@ -5910,24 +6035,49 @@ interface FindOverviewInstagramHistoryGroupDto {
|
|
|
5910
6035
|
};
|
|
5911
6036
|
}
|
|
5912
6037
|
interface FindInstagramHistoryGroupDto extends IFindBaseDto, IInstagramHistoryGroup {
|
|
5913
|
-
accountID: number;
|
|
5914
|
-
accountUsername: string;
|
|
5915
|
-
accountFullname: string;
|
|
5916
|
-
accountDeviceType: string;
|
|
5917
|
-
accountDeviceName: string;
|
|
5918
6038
|
idea: string;
|
|
5919
6039
|
niche: string;
|
|
5920
6040
|
type: ETypeManagerWorkClassify;
|
|
5921
|
-
|
|
5922
|
-
|
|
5923
|
-
|
|
5924
|
-
|
|
5925
|
-
|
|
5926
|
-
|
|
5927
|
-
|
|
5928
|
-
|
|
5929
|
-
|
|
5930
|
-
|
|
6041
|
+
sheetUrl: string;
|
|
6042
|
+
sheetName: string;
|
|
6043
|
+
statusSyncAccount?: EStatusAccountSocialSync;
|
|
6044
|
+
pcInfo: {
|
|
6045
|
+
name: string;
|
|
6046
|
+
department: string;
|
|
6047
|
+
leader: string;
|
|
6048
|
+
member: string;
|
|
6049
|
+
};
|
|
6050
|
+
deviceInfo: {
|
|
6051
|
+
key: string;
|
|
6052
|
+
name: string;
|
|
6053
|
+
type: ETypeDeviceOS;
|
|
6054
|
+
typeAppClone: string;
|
|
6055
|
+
nameAppClone: string;
|
|
6056
|
+
nameAppCloneSocial: string;
|
|
6057
|
+
};
|
|
6058
|
+
groupAccount: {
|
|
6059
|
+
oldGroup: string;
|
|
6060
|
+
newGroup: string;
|
|
6061
|
+
status: string;
|
|
6062
|
+
};
|
|
6063
|
+
historyUserName: {
|
|
6064
|
+
old: string;
|
|
6065
|
+
new: string;
|
|
6066
|
+
statusChange: string;
|
|
6067
|
+
timeChange: Date;
|
|
6068
|
+
};
|
|
6069
|
+
historyFullname: {
|
|
6070
|
+
old: string;
|
|
6071
|
+
new: string;
|
|
6072
|
+
statusChange: string;
|
|
6073
|
+
timeChange: Date;
|
|
6074
|
+
};
|
|
6075
|
+
emailInfo: {
|
|
6076
|
+
email: string;
|
|
6077
|
+
emailPassword: string;
|
|
6078
|
+
email2FA: string;
|
|
6079
|
+
emailRecover: string;
|
|
6080
|
+
};
|
|
5931
6081
|
}
|
|
5932
6082
|
interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
5933
6083
|
team: string[];
|
|
@@ -5949,6 +6099,8 @@ interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, IFilterBaseAcco
|
|
|
5949
6099
|
}
|
|
5950
6100
|
|
|
5951
6101
|
interface FindInstagramAccountRawDto extends IFindBaseDto, IInstagramAccountRaw {
|
|
6102
|
+
idea: string | IManagerWork;
|
|
6103
|
+
niche: string | IManagerWork;
|
|
5952
6104
|
type: ETypeManagerWorkClassify;
|
|
5953
6105
|
pcInfo: {
|
|
5954
6106
|
name: string;
|
|
@@ -6243,6 +6395,8 @@ interface AutoFillAssignedMemberInstagramAccountRawDto {
|
|
|
6243
6395
|
}
|
|
6244
6396
|
|
|
6245
6397
|
interface FindInstagramAccountRunDto extends IFindBaseDto, IInstagramAccountRun {
|
|
6398
|
+
idea: string | IManagerWork;
|
|
6399
|
+
niche: string | IManagerWork;
|
|
6246
6400
|
type: ETypeManagerWorkClassify;
|
|
6247
6401
|
pcInfo: {
|
|
6248
6402
|
name: string;
|