automation-lib 5.0.214 → 5.0.216
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 -7
- package/dist/index.d.ts +12 -7
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1107,7 +1107,7 @@ interface IHistoryTaskCanva extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1107
1107
|
rowID: string;
|
|
1108
1108
|
row: number;
|
|
1109
1109
|
typeSocial: ETypeSocial;
|
|
1110
|
-
|
|
1110
|
+
accountSocial: string | IAccountSocialBase;
|
|
1111
1111
|
typePost: string;
|
|
1112
1112
|
titlePool: string;
|
|
1113
1113
|
pool1: string;
|
|
@@ -1502,7 +1502,7 @@ interface IManagerImageAI extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1502
1502
|
|
|
1503
1503
|
interface IManagerImageAIUserAttached extends IBaseModel, ITrackingModel<IUser> {
|
|
1504
1504
|
typeSocial: ETypeSocial;
|
|
1505
|
-
|
|
1505
|
+
accountSocial: string | IAccountSocialBase;
|
|
1506
1506
|
managerImageAI: string | IManagerImageAI;
|
|
1507
1507
|
}
|
|
1508
1508
|
|
|
@@ -1752,7 +1752,7 @@ interface IDeviceSettingForAccount extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1752
1752
|
deviceKey: string;
|
|
1753
1753
|
device: string | IDevice;
|
|
1754
1754
|
typeSocial: ETypeSocial;
|
|
1755
|
-
|
|
1755
|
+
accountSocial: string | IAccountSocialBase;
|
|
1756
1756
|
}
|
|
1757
1757
|
|
|
1758
1758
|
interface IDeviceSettingForCHPlay extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -1786,6 +1786,11 @@ interface IAccountSocialBase {
|
|
|
1786
1786
|
pc: IPC | string;
|
|
1787
1787
|
deviceKey: string;
|
|
1788
1788
|
device: IDevice | string;
|
|
1789
|
+
oldUsername: string;
|
|
1790
|
+
oldFullname: string;
|
|
1791
|
+
oldEmail: string;
|
|
1792
|
+
oldCode2FA: string;
|
|
1793
|
+
oldPassword: string;
|
|
1789
1794
|
}
|
|
1790
1795
|
|
|
1791
1796
|
interface IThreadsHistoryAutoSync extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -2359,7 +2364,7 @@ type TaskTypeThreads = 'Post' | 'ReplyComment' | 'Follow';
|
|
|
2359
2364
|
interface ITaskToolMonitor extends IBaseModel, ITrackingModel<IUser> {
|
|
2360
2365
|
deviceKey: string;
|
|
2361
2366
|
typeSocial: ETypeSocial;
|
|
2362
|
-
|
|
2367
|
+
accountSocial: string | IAccountSocialBase;
|
|
2363
2368
|
taskType: TaskTypeInstagram | TaskTypeThreads;
|
|
2364
2369
|
taskId: string;
|
|
2365
2370
|
sheetTool: string | ISheetsTool;
|
|
@@ -2423,7 +2428,7 @@ interface ITaskAIImageVoiceCanva extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2423
2428
|
rowID: string;
|
|
2424
2429
|
row: number;
|
|
2425
2430
|
typeSocial: ETypeSocial;
|
|
2426
|
-
|
|
2431
|
+
accountSocial: string | IAccountSocialBase;
|
|
2427
2432
|
typeRatioImage: ETypeRatioImage;
|
|
2428
2433
|
channelImage: string | IAccountAIImageChannel;
|
|
2429
2434
|
accountAIImageInfo: string | IAccountAIImageInfo;
|
|
@@ -2590,7 +2595,7 @@ interface IHistoryTaskAIImage extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2590
2595
|
rowID: string;
|
|
2591
2596
|
row: number;
|
|
2592
2597
|
typeSocial: ETypeSocial;
|
|
2593
|
-
|
|
2598
|
+
accountSocial: string | IAccountSocialBase;
|
|
2594
2599
|
typeRatioImage: ETypeRatioImage;
|
|
2595
2600
|
channelImage: string | IAccountAIImageChannel;
|
|
2596
2601
|
accountEmailImage: string | IAccountEmail;
|
|
@@ -2619,7 +2624,7 @@ interface IHistoryTaskAIVoice extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2619
2624
|
rowID: string;
|
|
2620
2625
|
row: number;
|
|
2621
2626
|
typeSocial: ETypeSocial;
|
|
2622
|
-
|
|
2627
|
+
accountSocial: string | IAccountSocialBase;
|
|
2623
2628
|
channelVoice: string | IAccountAIVoiceChannel;
|
|
2624
2629
|
accountEmailVoice: string | IAccountEmail;
|
|
2625
2630
|
accountAIVoiceInfo: string | IAccountAIVoiceInfo;
|
package/dist/index.d.ts
CHANGED
|
@@ -1107,7 +1107,7 @@ interface IHistoryTaskCanva extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1107
1107
|
rowID: string;
|
|
1108
1108
|
row: number;
|
|
1109
1109
|
typeSocial: ETypeSocial;
|
|
1110
|
-
|
|
1110
|
+
accountSocial: string | IAccountSocialBase;
|
|
1111
1111
|
typePost: string;
|
|
1112
1112
|
titlePool: string;
|
|
1113
1113
|
pool1: string;
|
|
@@ -1502,7 +1502,7 @@ interface IManagerImageAI extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1502
1502
|
|
|
1503
1503
|
interface IManagerImageAIUserAttached extends IBaseModel, ITrackingModel<IUser> {
|
|
1504
1504
|
typeSocial: ETypeSocial;
|
|
1505
|
-
|
|
1505
|
+
accountSocial: string | IAccountSocialBase;
|
|
1506
1506
|
managerImageAI: string | IManagerImageAI;
|
|
1507
1507
|
}
|
|
1508
1508
|
|
|
@@ -1752,7 +1752,7 @@ interface IDeviceSettingForAccount extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1752
1752
|
deviceKey: string;
|
|
1753
1753
|
device: string | IDevice;
|
|
1754
1754
|
typeSocial: ETypeSocial;
|
|
1755
|
-
|
|
1755
|
+
accountSocial: string | IAccountSocialBase;
|
|
1756
1756
|
}
|
|
1757
1757
|
|
|
1758
1758
|
interface IDeviceSettingForCHPlay extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -1786,6 +1786,11 @@ interface IAccountSocialBase {
|
|
|
1786
1786
|
pc: IPC | string;
|
|
1787
1787
|
deviceKey: string;
|
|
1788
1788
|
device: IDevice | string;
|
|
1789
|
+
oldUsername: string;
|
|
1790
|
+
oldFullname: string;
|
|
1791
|
+
oldEmail: string;
|
|
1792
|
+
oldCode2FA: string;
|
|
1793
|
+
oldPassword: string;
|
|
1789
1794
|
}
|
|
1790
1795
|
|
|
1791
1796
|
interface IThreadsHistoryAutoSync extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -2359,7 +2364,7 @@ type TaskTypeThreads = 'Post' | 'ReplyComment' | 'Follow';
|
|
|
2359
2364
|
interface ITaskToolMonitor extends IBaseModel, ITrackingModel<IUser> {
|
|
2360
2365
|
deviceKey: string;
|
|
2361
2366
|
typeSocial: ETypeSocial;
|
|
2362
|
-
|
|
2367
|
+
accountSocial: string | IAccountSocialBase;
|
|
2363
2368
|
taskType: TaskTypeInstagram | TaskTypeThreads;
|
|
2364
2369
|
taskId: string;
|
|
2365
2370
|
sheetTool: string | ISheetsTool;
|
|
@@ -2423,7 +2428,7 @@ interface ITaskAIImageVoiceCanva extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2423
2428
|
rowID: string;
|
|
2424
2429
|
row: number;
|
|
2425
2430
|
typeSocial: ETypeSocial;
|
|
2426
|
-
|
|
2431
|
+
accountSocial: string | IAccountSocialBase;
|
|
2427
2432
|
typeRatioImage: ETypeRatioImage;
|
|
2428
2433
|
channelImage: string | IAccountAIImageChannel;
|
|
2429
2434
|
accountAIImageInfo: string | IAccountAIImageInfo;
|
|
@@ -2590,7 +2595,7 @@ interface IHistoryTaskAIImage extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2590
2595
|
rowID: string;
|
|
2591
2596
|
row: number;
|
|
2592
2597
|
typeSocial: ETypeSocial;
|
|
2593
|
-
|
|
2598
|
+
accountSocial: string | IAccountSocialBase;
|
|
2594
2599
|
typeRatioImage: ETypeRatioImage;
|
|
2595
2600
|
channelImage: string | IAccountAIImageChannel;
|
|
2596
2601
|
accountEmailImage: string | IAccountEmail;
|
|
@@ -2619,7 +2624,7 @@ interface IHistoryTaskAIVoice extends IBaseModel, ITrackingModel<IUser> {
|
|
|
2619
2624
|
rowID: string;
|
|
2620
2625
|
row: number;
|
|
2621
2626
|
typeSocial: ETypeSocial;
|
|
2622
|
-
|
|
2627
|
+
accountSocial: string | IAccountSocialBase;
|
|
2623
2628
|
channelVoice: string | IAccountAIVoiceChannel;
|
|
2624
2629
|
accountEmailVoice: string | IAccountEmail;
|
|
2625
2630
|
accountAIVoiceInfo: string | IAccountAIVoiceInfo;
|