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