automation-lib 5.1.377 → 5.1.379
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 +12 -0
- package/dist/index.d.ts +12 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -5782,6 +5782,9 @@ interface FindOverviewInstagramHistoryAutoSyncDto {
|
|
|
5782
5782
|
};
|
|
5783
5783
|
}
|
|
5784
5784
|
interface FindInstagramHistoryAutoSyncDto extends IFindBaseDto, IInstagramHistoryAutoSync {
|
|
5785
|
+
accountID: number;
|
|
5786
|
+
accountUsername: string;
|
|
5787
|
+
accountFullname: string;
|
|
5785
5788
|
loginStatus: EStatusAccountSocialLogin;
|
|
5786
5789
|
statusSyncAccount?: EStatusAccountSocialSync;
|
|
5787
5790
|
idea: string;
|
|
@@ -5866,6 +5869,9 @@ interface FindOverviewInstagramHistoryChangeInfoDto {
|
|
|
5866
5869
|
};
|
|
5867
5870
|
}
|
|
5868
5871
|
interface FindInstagramHistoryChangeInfoDto extends IFindBaseDto, IInstagramHistoryChangeInfo {
|
|
5872
|
+
accountID: number;
|
|
5873
|
+
accountUsername: string;
|
|
5874
|
+
accountFullname: string;
|
|
5869
5875
|
changeType: 'AVATAR' | 'COVER' | 'USERNAME' | 'FULLNAME' | 'EMAIL' | 'PASSWORD' | '2FA' | 'BIO' | 'ACCOUNT_SETTING';
|
|
5870
5876
|
idea: string;
|
|
5871
5877
|
niche: string;
|
|
@@ -5993,6 +5999,9 @@ interface FindOverviewInstagramHistoryCreateNewDto {
|
|
|
5993
5999
|
};
|
|
5994
6000
|
}
|
|
5995
6001
|
interface FindInstagramHistoryCreateNewDto extends IFindBaseDto, IInstagramHistoryCreateNew {
|
|
6002
|
+
accountID: number;
|
|
6003
|
+
accountUsername: string;
|
|
6004
|
+
accountFullname: string;
|
|
5996
6005
|
folderName: string;
|
|
5997
6006
|
model: EAIModelImage;
|
|
5998
6007
|
idea: string;
|
|
@@ -6077,6 +6086,9 @@ interface FindOverviewInstagramHistoryGroupDto {
|
|
|
6077
6086
|
};
|
|
6078
6087
|
}
|
|
6079
6088
|
interface FindInstagramHistoryGroupDto extends IFindBaseDto, IInstagramHistoryGroup {
|
|
6089
|
+
accountID: number;
|
|
6090
|
+
accountUsername: string;
|
|
6091
|
+
accountFullname: string;
|
|
6080
6092
|
idea: string;
|
|
6081
6093
|
niche: string;
|
|
6082
6094
|
type: ETypeManagerWorkClassify;
|
package/dist/index.d.ts
CHANGED
|
@@ -5782,6 +5782,9 @@ interface FindOverviewInstagramHistoryAutoSyncDto {
|
|
|
5782
5782
|
};
|
|
5783
5783
|
}
|
|
5784
5784
|
interface FindInstagramHistoryAutoSyncDto extends IFindBaseDto, IInstagramHistoryAutoSync {
|
|
5785
|
+
accountID: number;
|
|
5786
|
+
accountUsername: string;
|
|
5787
|
+
accountFullname: string;
|
|
5785
5788
|
loginStatus: EStatusAccountSocialLogin;
|
|
5786
5789
|
statusSyncAccount?: EStatusAccountSocialSync;
|
|
5787
5790
|
idea: string;
|
|
@@ -5866,6 +5869,9 @@ interface FindOverviewInstagramHistoryChangeInfoDto {
|
|
|
5866
5869
|
};
|
|
5867
5870
|
}
|
|
5868
5871
|
interface FindInstagramHistoryChangeInfoDto extends IFindBaseDto, IInstagramHistoryChangeInfo {
|
|
5872
|
+
accountID: number;
|
|
5873
|
+
accountUsername: string;
|
|
5874
|
+
accountFullname: string;
|
|
5869
5875
|
changeType: 'AVATAR' | 'COVER' | 'USERNAME' | 'FULLNAME' | 'EMAIL' | 'PASSWORD' | '2FA' | 'BIO' | 'ACCOUNT_SETTING';
|
|
5870
5876
|
idea: string;
|
|
5871
5877
|
niche: string;
|
|
@@ -5993,6 +5999,9 @@ interface FindOverviewInstagramHistoryCreateNewDto {
|
|
|
5993
5999
|
};
|
|
5994
6000
|
}
|
|
5995
6001
|
interface FindInstagramHistoryCreateNewDto extends IFindBaseDto, IInstagramHistoryCreateNew {
|
|
6002
|
+
accountID: number;
|
|
6003
|
+
accountUsername: string;
|
|
6004
|
+
accountFullname: string;
|
|
5996
6005
|
folderName: string;
|
|
5997
6006
|
model: EAIModelImage;
|
|
5998
6007
|
idea: string;
|
|
@@ -6077,6 +6086,9 @@ interface FindOverviewInstagramHistoryGroupDto {
|
|
|
6077
6086
|
};
|
|
6078
6087
|
}
|
|
6079
6088
|
interface FindInstagramHistoryGroupDto extends IFindBaseDto, IInstagramHistoryGroup {
|
|
6089
|
+
accountID: number;
|
|
6090
|
+
accountUsername: string;
|
|
6091
|
+
accountFullname: string;
|
|
6080
6092
|
idea: string;
|
|
6081
6093
|
niche: string;
|
|
6082
6094
|
type: ETypeManagerWorkClassify;
|