automation-lib 5.1.383 → 5.1.385
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 +19 -4
- package/dist/index.d.ts +19 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3087,11 +3087,23 @@ interface IInstagramHistoryCreateNew extends IBaseModel, ITrackingModel<IUser> {
|
|
|
3087
3087
|
note: string;
|
|
3088
3088
|
}
|
|
3089
3089
|
|
|
3090
|
+
declare enum EStatusAccountTypeChangeInfoInstagram {
|
|
3091
|
+
AVATAR = "AVATAR",
|
|
3092
|
+
COVER = "COVER",
|
|
3093
|
+
USERNAME = "USERNAME",
|
|
3094
|
+
FULLNAME = "FULLNAME",
|
|
3095
|
+
EMAIL = "EMAIL",
|
|
3096
|
+
PASSWORD = "PASSWORD",
|
|
3097
|
+
CODE_2FA = "CODE_2FA",
|
|
3098
|
+
BIO = "BIO",
|
|
3099
|
+
ACCOUNT_SETTING = "ACCOUNT_SETTING"
|
|
3100
|
+
}
|
|
3101
|
+
|
|
3090
3102
|
interface IInstagramHistoryChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
3091
3103
|
sheetUrl: string;
|
|
3092
3104
|
sheetName: string;
|
|
3093
3105
|
account: string | IInstagramAccountRaw;
|
|
3094
|
-
changeType:
|
|
3106
|
+
changeType: EStatusAccountTypeChangeInfoInstagram;
|
|
3095
3107
|
promptAvatar?: string;
|
|
3096
3108
|
oldAvatar?: string | IFile;
|
|
3097
3109
|
newAvatar?: string | IFile;
|
|
@@ -5848,6 +5860,7 @@ interface FilterInstagramHistoryAutoSyncDto extends IFilterBaseDto, IFilterBaseA
|
|
|
5848
5860
|
type: ETypeManagerWorkClassify[];
|
|
5849
5861
|
pc: string[];
|
|
5850
5862
|
device: string[];
|
|
5863
|
+
accountGroup: string[];
|
|
5851
5864
|
account: string[];
|
|
5852
5865
|
sheetName: string[];
|
|
5853
5866
|
statusSyncAccount: EStatusAccountSocialSync[];
|
|
@@ -5877,7 +5890,7 @@ interface FindInstagramHistoryChangeInfoDto extends IFindBaseDto, IInstagramHist
|
|
|
5877
5890
|
accountID: number;
|
|
5878
5891
|
accountUsername: string;
|
|
5879
5892
|
accountFullname: string;
|
|
5880
|
-
changeType:
|
|
5893
|
+
changeType: EStatusAccountTypeChangeInfoInstagram;
|
|
5881
5894
|
idea: string;
|
|
5882
5895
|
niche: string;
|
|
5883
5896
|
type: ETypeManagerWorkClassify;
|
|
@@ -5979,9 +5992,10 @@ interface FilterInstagramHistoryChangeInfoDto extends IFilterBaseDto, IFilterBas
|
|
|
5979
5992
|
type: ETypeManagerWorkClassify[];
|
|
5980
5993
|
pc: string[];
|
|
5981
5994
|
device: string[];
|
|
5995
|
+
accountGroup: string[];
|
|
5982
5996
|
account: string[];
|
|
5983
5997
|
sheetName: string[];
|
|
5984
|
-
changeType:
|
|
5998
|
+
changeType: EStatusAccountTypeChangeInfoInstagram[];
|
|
5985
5999
|
statusChangeAvatar: EStatusChangeInfo[];
|
|
5986
6000
|
statusChangeCover: EStatusChangeInfo[];
|
|
5987
6001
|
statusChangeUsername: EStatusChangeInfo[];
|
|
@@ -6084,6 +6098,7 @@ interface FilterInstagramHistoryCreateNewDto extends IFilterBaseDto, IFilterBase
|
|
|
6084
6098
|
type: ETypeManagerWorkClassify[];
|
|
6085
6099
|
pc: string[];
|
|
6086
6100
|
device: string[];
|
|
6101
|
+
accountGroup: string[];
|
|
6087
6102
|
account: string[];
|
|
6088
6103
|
sheetName: string[];
|
|
6089
6104
|
model: EAIModelImage[];
|
|
@@ -6158,7 +6173,7 @@ interface FindInstagramHistoryGroupDto extends IFindBaseDto, IInstagramHistoryGr
|
|
|
6158
6173
|
emailRecover: string;
|
|
6159
6174
|
};
|
|
6160
6175
|
}
|
|
6161
|
-
interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
6176
|
+
interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, Omit<IFilterBaseAccountSocialDto, 'accountGroup'> {
|
|
6162
6177
|
team: string[];
|
|
6163
6178
|
leader: string[];
|
|
6164
6179
|
department: string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -3087,11 +3087,23 @@ interface IInstagramHistoryCreateNew extends IBaseModel, ITrackingModel<IUser> {
|
|
|
3087
3087
|
note: string;
|
|
3088
3088
|
}
|
|
3089
3089
|
|
|
3090
|
+
declare enum EStatusAccountTypeChangeInfoInstagram {
|
|
3091
|
+
AVATAR = "AVATAR",
|
|
3092
|
+
COVER = "COVER",
|
|
3093
|
+
USERNAME = "USERNAME",
|
|
3094
|
+
FULLNAME = "FULLNAME",
|
|
3095
|
+
EMAIL = "EMAIL",
|
|
3096
|
+
PASSWORD = "PASSWORD",
|
|
3097
|
+
CODE_2FA = "CODE_2FA",
|
|
3098
|
+
BIO = "BIO",
|
|
3099
|
+
ACCOUNT_SETTING = "ACCOUNT_SETTING"
|
|
3100
|
+
}
|
|
3101
|
+
|
|
3090
3102
|
interface IInstagramHistoryChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
3091
3103
|
sheetUrl: string;
|
|
3092
3104
|
sheetName: string;
|
|
3093
3105
|
account: string | IInstagramAccountRaw;
|
|
3094
|
-
changeType:
|
|
3106
|
+
changeType: EStatusAccountTypeChangeInfoInstagram;
|
|
3095
3107
|
promptAvatar?: string;
|
|
3096
3108
|
oldAvatar?: string | IFile;
|
|
3097
3109
|
newAvatar?: string | IFile;
|
|
@@ -5848,6 +5860,7 @@ interface FilterInstagramHistoryAutoSyncDto extends IFilterBaseDto, IFilterBaseA
|
|
|
5848
5860
|
type: ETypeManagerWorkClassify[];
|
|
5849
5861
|
pc: string[];
|
|
5850
5862
|
device: string[];
|
|
5863
|
+
accountGroup: string[];
|
|
5851
5864
|
account: string[];
|
|
5852
5865
|
sheetName: string[];
|
|
5853
5866
|
statusSyncAccount: EStatusAccountSocialSync[];
|
|
@@ -5877,7 +5890,7 @@ interface FindInstagramHistoryChangeInfoDto extends IFindBaseDto, IInstagramHist
|
|
|
5877
5890
|
accountID: number;
|
|
5878
5891
|
accountUsername: string;
|
|
5879
5892
|
accountFullname: string;
|
|
5880
|
-
changeType:
|
|
5893
|
+
changeType: EStatusAccountTypeChangeInfoInstagram;
|
|
5881
5894
|
idea: string;
|
|
5882
5895
|
niche: string;
|
|
5883
5896
|
type: ETypeManagerWorkClassify;
|
|
@@ -5979,9 +5992,10 @@ interface FilterInstagramHistoryChangeInfoDto extends IFilterBaseDto, IFilterBas
|
|
|
5979
5992
|
type: ETypeManagerWorkClassify[];
|
|
5980
5993
|
pc: string[];
|
|
5981
5994
|
device: string[];
|
|
5995
|
+
accountGroup: string[];
|
|
5982
5996
|
account: string[];
|
|
5983
5997
|
sheetName: string[];
|
|
5984
|
-
changeType:
|
|
5998
|
+
changeType: EStatusAccountTypeChangeInfoInstagram[];
|
|
5985
5999
|
statusChangeAvatar: EStatusChangeInfo[];
|
|
5986
6000
|
statusChangeCover: EStatusChangeInfo[];
|
|
5987
6001
|
statusChangeUsername: EStatusChangeInfo[];
|
|
@@ -6084,6 +6098,7 @@ interface FilterInstagramHistoryCreateNewDto extends IFilterBaseDto, IFilterBase
|
|
|
6084
6098
|
type: ETypeManagerWorkClassify[];
|
|
6085
6099
|
pc: string[];
|
|
6086
6100
|
device: string[];
|
|
6101
|
+
accountGroup: string[];
|
|
6087
6102
|
account: string[];
|
|
6088
6103
|
sheetName: string[];
|
|
6089
6104
|
model: EAIModelImage[];
|
|
@@ -6158,7 +6173,7 @@ interface FindInstagramHistoryGroupDto extends IFindBaseDto, IInstagramHistoryGr
|
|
|
6158
6173
|
emailRecover: string;
|
|
6159
6174
|
};
|
|
6160
6175
|
}
|
|
6161
|
-
interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
6176
|
+
interface FilterInstagramHistoryGroupDto extends IFilterBaseDto, Omit<IFilterBaseAccountSocialDto, 'accountGroup'> {
|
|
6162
6177
|
team: string[];
|
|
6163
6178
|
leader: string[];
|
|
6164
6179
|
department: string[];
|