automation-lib 5.1.361 → 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 CHANGED
@@ -75,9 +75,6 @@ declare const CONST_API_CONTROLLERS: {
75
75
  SETTING_REPLY_COMMENTS: string;
76
76
  SETTING_REPLY_MESSAGE: string;
77
77
  };
78
- SETTING: {
79
- FREEPIK: string;
80
- };
81
78
  HISTORY: {
82
79
  TASK_AI_CONTENT: string;
83
80
  TASK_AI_IMAGE: string;
@@ -2382,6 +2379,7 @@ interface IThreadsAccountRun extends IBaseModel, IAccountSocialBase, ITrackingMo
2382
2379
  accountDeviceNameAppClone: string;
2383
2380
  idea: string | IManagerWork;
2384
2381
  niche: string | IManagerWork;
2382
+ type: ETypeManagerWorkClassify;
2385
2383
  pc: IPC | string;
2386
2384
  deviceKey: string;
2387
2385
  device: IDevice | string;
@@ -2442,6 +2440,7 @@ interface IThreadsAccountRaw extends IBaseModel, IAccountSocialBase, ITrackingMo
2442
2440
  accountDeviceNameAppClone: string;
2443
2441
  idea: string | IManagerWork;
2444
2442
  niche: string | IManagerWork;
2443
+ type: ETypeManagerWorkClassify;
2445
2444
  pc: IPC | string;
2446
2445
  deviceKey: string;
2447
2446
  device: IDevice | string;
@@ -2894,6 +2893,7 @@ interface IInstagramAccountRun extends IBaseModel, IAccountSocialBase, ITracking
2894
2893
  accountDeviceNameAppClone: string;
2895
2894
  idea: string | IManagerWork;
2896
2895
  niche: string | IManagerWork;
2896
+ type: ETypeManagerWorkClassify;
2897
2897
  pc: IPC | string;
2898
2898
  deviceKey: string;
2899
2899
  device: IDevice | string;
@@ -2951,6 +2951,7 @@ interface IInstagramAccountRaw extends IBaseModel, IAccountSocialBase, ITracking
2951
2951
  accountDeviceNameAppClone: string;
2952
2952
  idea: string | IManagerWork;
2953
2953
  niche: string | IManagerWork;
2954
+ type: ETypeManagerWorkClassify;
2954
2955
  pc: IPC | string;
2955
2956
  deviceKey: string;
2956
2957
  device: IDevice | string;
@@ -5735,24 +5736,50 @@ interface FindOverviewInstagramHistoryAutoSyncDto {
5735
5736
  };
5736
5737
  }
5737
5738
  interface FindInstagramHistoryAutoSyncDto extends IFindBaseDto, IInstagramHistoryAutoSync {
5738
- accountID: number;
5739
- accountUsername: string;
5740
- accountFullname: string;
5741
- accountDeviceType: string;
5742
- accountDeviceName: string;
5739
+ loginStatus: EStatusAccountSocialLogin;
5740
+ statusSyncAccount?: EStatusAccountSocialSync;
5743
5741
  idea: string;
5744
5742
  niche: string;
5745
5743
  type: ETypeManagerWorkClassify;
5746
- pc: string;
5747
- deviceKey: string;
5748
- deviceModel: string;
5749
- deviceName: string;
5750
- deviceOS: ETypeDeviceOS;
5751
- group: string;
5752
- email: string;
5753
- emailPassword: string;
5754
- email2FA: string;
5755
- emailRecover: string;
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
+ };
5756
5783
  }
5757
5784
  interface FilterInstagramHistoryAutoSyncDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5758
5785
  team: string[];
@@ -5793,24 +5820,93 @@ interface FindOverviewInstagramHistoryChangeInfoDto {
5793
5820
  };
5794
5821
  }
5795
5822
  interface FindInstagramHistoryChangeInfoDto extends IFindBaseDto, IInstagramHistoryChangeInfo {
5796
- accountID: number;
5797
- accountUsername: string;
5798
- accountFullname: string;
5799
- accountDeviceType: string;
5800
- accountDeviceName: string;
5823
+ changeType: 'AVATAR' | 'COVER' | 'USERNAME' | 'FULLNAME' | 'EMAIL' | 'PASSWORD' | '2FA' | 'BIO' | 'ACCOUNT_SETTING';
5801
5824
  idea: string;
5802
5825
  niche: string;
5803
5826
  type: ETypeManagerWorkClassify;
5804
- pc: string;
5805
- deviceKey: string;
5806
- deviceModel: string;
5807
- deviceName: string;
5808
- deviceOS: ETypeDeviceOS;
5809
- group: string;
5810
- email: string;
5811
- emailPassword: string;
5812
- email2FA: string;
5813
- emailRecover: string;
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
+ };
5814
5910
  }
5815
5911
  interface FilterInstagramHistoryChangeInfoDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5816
5912
  team: string[];
@@ -5851,24 +5947,50 @@ interface FindOverviewInstagramHistoryCreateNewDto {
5851
5947
  };
5852
5948
  }
5853
5949
  interface FindInstagramHistoryCreateNewDto extends IFindBaseDto, IInstagramHistoryCreateNew {
5854
- accountID: number;
5855
- accountUsername: string;
5856
- accountFullname: string;
5857
- accountDeviceType: string;
5858
- accountDeviceName: string;
5950
+ folderName: string;
5951
+ model: EAIModelImage;
5859
5952
  idea: string;
5860
5953
  niche: string;
5861
5954
  type: ETypeManagerWorkClassify;
5862
- pc: string;
5863
- deviceKey: string;
5864
- deviceModel: string;
5865
- deviceName: string;
5866
- deviceOS: ETypeDeviceOS;
5867
- group: string;
5868
- email: string;
5869
- emailPassword: string;
5870
- email2FA: string;
5871
- emailRecover: string;
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
+ };
5872
5994
  }
5873
5995
  interface FilterInstagramHistoryCreateNewDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5874
5996
  team: string[];
@@ -5909,24 +6031,49 @@ interface FindOverviewInstagramHistoryGroupDto {
5909
6031
  };
5910
6032
  }
5911
6033
  interface FindInstagramHistoryGroupDto extends IFindBaseDto, IInstagramHistoryGroup {
5912
- accountID: number;
5913
- accountUsername: string;
5914
- accountFullname: string;
5915
- accountDeviceType: string;
5916
- accountDeviceName: string;
5917
6034
  idea: string;
5918
6035
  niche: string;
5919
6036
  type: ETypeManagerWorkClassify;
5920
- pc: string;
5921
- deviceKey: string;
5922
- deviceModel: string;
5923
- deviceName: string;
5924
- deviceOS: ETypeDeviceOS;
5925
- group: string;
5926
- email: string;
5927
- emailPassword: string;
5928
- email2FA: string;
5929
- emailRecover: string;
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
+ };
5930
6077
  }
5931
6078
  interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5932
6079
  team: string[];
@@ -5948,6 +6095,8 @@ interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, IFilterBaseAcco
5948
6095
  }
5949
6096
 
5950
6097
  interface FindInstagramAccountRawDto extends IFindBaseDto, IInstagramAccountRaw {
6098
+ idea: string;
6099
+ niche: string;
5951
6100
  type: ETypeManagerWorkClassify;
5952
6101
  pcInfo: {
5953
6102
  name: string;
package/dist/index.d.ts CHANGED
@@ -75,9 +75,6 @@ declare const CONST_API_CONTROLLERS: {
75
75
  SETTING_REPLY_COMMENTS: string;
76
76
  SETTING_REPLY_MESSAGE: string;
77
77
  };
78
- SETTING: {
79
- FREEPIK: string;
80
- };
81
78
  HISTORY: {
82
79
  TASK_AI_CONTENT: string;
83
80
  TASK_AI_IMAGE: string;
@@ -2382,6 +2379,7 @@ interface IThreadsAccountRun extends IBaseModel, IAccountSocialBase, ITrackingMo
2382
2379
  accountDeviceNameAppClone: string;
2383
2380
  idea: string | IManagerWork;
2384
2381
  niche: string | IManagerWork;
2382
+ type: ETypeManagerWorkClassify;
2385
2383
  pc: IPC | string;
2386
2384
  deviceKey: string;
2387
2385
  device: IDevice | string;
@@ -2442,6 +2440,7 @@ interface IThreadsAccountRaw extends IBaseModel, IAccountSocialBase, ITrackingMo
2442
2440
  accountDeviceNameAppClone: string;
2443
2441
  idea: string | IManagerWork;
2444
2442
  niche: string | IManagerWork;
2443
+ type: ETypeManagerWorkClassify;
2445
2444
  pc: IPC | string;
2446
2445
  deviceKey: string;
2447
2446
  device: IDevice | string;
@@ -2894,6 +2893,7 @@ interface IInstagramAccountRun extends IBaseModel, IAccountSocialBase, ITracking
2894
2893
  accountDeviceNameAppClone: string;
2895
2894
  idea: string | IManagerWork;
2896
2895
  niche: string | IManagerWork;
2896
+ type: ETypeManagerWorkClassify;
2897
2897
  pc: IPC | string;
2898
2898
  deviceKey: string;
2899
2899
  device: IDevice | string;
@@ -2951,6 +2951,7 @@ interface IInstagramAccountRaw extends IBaseModel, IAccountSocialBase, ITracking
2951
2951
  accountDeviceNameAppClone: string;
2952
2952
  idea: string | IManagerWork;
2953
2953
  niche: string | IManagerWork;
2954
+ type: ETypeManagerWorkClassify;
2954
2955
  pc: IPC | string;
2955
2956
  deviceKey: string;
2956
2957
  device: IDevice | string;
@@ -5735,24 +5736,50 @@ interface FindOverviewInstagramHistoryAutoSyncDto {
5735
5736
  };
5736
5737
  }
5737
5738
  interface FindInstagramHistoryAutoSyncDto extends IFindBaseDto, IInstagramHistoryAutoSync {
5738
- accountID: number;
5739
- accountUsername: string;
5740
- accountFullname: string;
5741
- accountDeviceType: string;
5742
- accountDeviceName: string;
5739
+ loginStatus: EStatusAccountSocialLogin;
5740
+ statusSyncAccount?: EStatusAccountSocialSync;
5743
5741
  idea: string;
5744
5742
  niche: string;
5745
5743
  type: ETypeManagerWorkClassify;
5746
- pc: string;
5747
- deviceKey: string;
5748
- deviceModel: string;
5749
- deviceName: string;
5750
- deviceOS: ETypeDeviceOS;
5751
- group: string;
5752
- email: string;
5753
- emailPassword: string;
5754
- email2FA: string;
5755
- emailRecover: string;
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
+ };
5756
5783
  }
5757
5784
  interface FilterInstagramHistoryAutoSyncDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5758
5785
  team: string[];
@@ -5793,24 +5820,93 @@ interface FindOverviewInstagramHistoryChangeInfoDto {
5793
5820
  };
5794
5821
  }
5795
5822
  interface FindInstagramHistoryChangeInfoDto extends IFindBaseDto, IInstagramHistoryChangeInfo {
5796
- accountID: number;
5797
- accountUsername: string;
5798
- accountFullname: string;
5799
- accountDeviceType: string;
5800
- accountDeviceName: string;
5823
+ changeType: 'AVATAR' | 'COVER' | 'USERNAME' | 'FULLNAME' | 'EMAIL' | 'PASSWORD' | '2FA' | 'BIO' | 'ACCOUNT_SETTING';
5801
5824
  idea: string;
5802
5825
  niche: string;
5803
5826
  type: ETypeManagerWorkClassify;
5804
- pc: string;
5805
- deviceKey: string;
5806
- deviceModel: string;
5807
- deviceName: string;
5808
- deviceOS: ETypeDeviceOS;
5809
- group: string;
5810
- email: string;
5811
- emailPassword: string;
5812
- email2FA: string;
5813
- emailRecover: string;
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
+ };
5814
5910
  }
5815
5911
  interface FilterInstagramHistoryChangeInfoDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5816
5912
  team: string[];
@@ -5851,24 +5947,50 @@ interface FindOverviewInstagramHistoryCreateNewDto {
5851
5947
  };
5852
5948
  }
5853
5949
  interface FindInstagramHistoryCreateNewDto extends IFindBaseDto, IInstagramHistoryCreateNew {
5854
- accountID: number;
5855
- accountUsername: string;
5856
- accountFullname: string;
5857
- accountDeviceType: string;
5858
- accountDeviceName: string;
5950
+ folderName: string;
5951
+ model: EAIModelImage;
5859
5952
  idea: string;
5860
5953
  niche: string;
5861
5954
  type: ETypeManagerWorkClassify;
5862
- pc: string;
5863
- deviceKey: string;
5864
- deviceModel: string;
5865
- deviceName: string;
5866
- deviceOS: ETypeDeviceOS;
5867
- group: string;
5868
- email: string;
5869
- emailPassword: string;
5870
- email2FA: string;
5871
- emailRecover: string;
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
+ };
5872
5994
  }
5873
5995
  interface FilterInstagramHistoryCreateNewDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5874
5996
  team: string[];
@@ -5909,24 +6031,49 @@ interface FindOverviewInstagramHistoryGroupDto {
5909
6031
  };
5910
6032
  }
5911
6033
  interface FindInstagramHistoryGroupDto extends IFindBaseDto, IInstagramHistoryGroup {
5912
- accountID: number;
5913
- accountUsername: string;
5914
- accountFullname: string;
5915
- accountDeviceType: string;
5916
- accountDeviceName: string;
5917
6034
  idea: string;
5918
6035
  niche: string;
5919
6036
  type: ETypeManagerWorkClassify;
5920
- pc: string;
5921
- deviceKey: string;
5922
- deviceModel: string;
5923
- deviceName: string;
5924
- deviceOS: ETypeDeviceOS;
5925
- group: string;
5926
- email: string;
5927
- emailPassword: string;
5928
- email2FA: string;
5929
- emailRecover: string;
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
+ };
5930
6077
  }
5931
6078
  interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
5932
6079
  team: string[];
@@ -5948,6 +6095,8 @@ interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, IFilterBaseAcco
5948
6095
  }
5949
6096
 
5950
6097
  interface FindInstagramAccountRawDto extends IFindBaseDto, IInstagramAccountRaw {
6098
+ idea: string;
6099
+ niche: string;
5951
6100
  type: ETypeManagerWorkClassify;
5952
6101
  pcInfo: {
5953
6102
  name: string;
package/dist/index.js CHANGED
@@ -230,9 +230,6 @@ var CONST_API_CONTROLLERS = {
230
230
  SETTING_REPLY_COMMENTS: "threads-interact-reply-comments-threads",
231
231
  SETTING_REPLY_MESSAGE: "threads-interact-reply-message-threads"
232
232
  },
233
- SETTING: {
234
- FREEPIK: "freepik"
235
- },
236
233
  HISTORY: {
237
234
  TASK_AI_CONTENT: "task-ai-content",
238
235
  TASK_AI_IMAGE: "task-ai-image",
package/dist/index.mjs CHANGED
@@ -98,9 +98,6 @@ var CONST_API_CONTROLLERS = {
98
98
  SETTING_REPLY_COMMENTS: "threads-interact-reply-comments-threads",
99
99
  SETTING_REPLY_MESSAGE: "threads-interact-reply-message-threads"
100
100
  },
101
- SETTING: {
102
- FREEPIK: "freepik"
103
- },
104
101
  HISTORY: {
105
102
  TASK_AI_CONTENT: "task-ai-content",
106
103
  TASK_AI_IMAGE: "task-ai-image",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "5.1.361",
3
+ "version": "5.1.364",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",