automation-lib 5.1.91 → 5.1.92
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 +9 -2
- package/dist/index.d.ts +9 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -2478,6 +2478,7 @@ interface ITaskInstagramBlockUser extends IBaseModel, ITrackingModel<IUser> {
|
|
2478
2478
|
service: string;
|
2479
2479
|
action: string;
|
2480
2480
|
timeExecute: Date;
|
2481
|
+
status: EStatusTaskToolSocials;
|
2481
2482
|
typeChange: 'block' | 'hidden' | 'restrict';
|
2482
2483
|
blockUserNameIg: string;
|
2483
2484
|
restrictUserNameIg: string;
|
@@ -2497,6 +2498,7 @@ interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
2497
2498
|
service: string;
|
2498
2499
|
action: string;
|
2499
2500
|
timeExecute: Date;
|
2501
|
+
status: EStatusTaskToolSocials;
|
2500
2502
|
typeChange: 'info' | 'bio' | 'password' | 'code2FA' | 'email' | 'link' | 'avatar' | 'cover';
|
2501
2503
|
oldUserName: string;
|
2502
2504
|
changeUserNameNew: string;
|
@@ -2531,6 +2533,7 @@ interface ITaskInstagramFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
2531
2533
|
service: string;
|
2532
2534
|
action: string;
|
2533
2535
|
timeExecute: Date;
|
2536
|
+
status: EStatusTaskToolSocials;
|
2534
2537
|
listUsernameFollow: string[];
|
2535
2538
|
}
|
2536
2539
|
|
@@ -2547,6 +2550,7 @@ interface ITaskInstagramReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
2547
2550
|
service: string;
|
2548
2551
|
action: string;
|
2549
2552
|
timeExecute: Date;
|
2553
|
+
status: EStatusTaskToolSocials;
|
2550
2554
|
postUrlReply: string;
|
2551
2555
|
messageForReply: string;
|
2552
2556
|
replyCommentContentStep1: string;
|
@@ -2568,6 +2572,7 @@ interface ITaskInstagramReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
2568
2572
|
service: string;
|
2569
2573
|
action: string;
|
2570
2574
|
timeExecute: Date;
|
2575
|
+
status: EStatusTaskToolSocials;
|
2571
2576
|
postUrlReply: string;
|
2572
2577
|
messageForReply: string;
|
2573
2578
|
replyMessageContentStep1: string;
|
@@ -2589,6 +2594,7 @@ interface ITaskInstagramPost extends IBaseModel, ITrackingModel<IUser> {
|
|
2589
2594
|
service: string;
|
2590
2595
|
action: string;
|
2591
2596
|
timeExecute: Date;
|
2597
|
+
status: EStatusTaskToolSocials;
|
2592
2598
|
canvaUrlVideo: string;
|
2593
2599
|
canvaImageThumb: string;
|
2594
2600
|
canvaImagePage1: string;
|
@@ -2632,13 +2638,12 @@ interface ITaskInstagramInteractExplore extends IBaseModel, ITrackingModel<IUser
|
|
2632
2638
|
service: string;
|
2633
2639
|
action: string;
|
2634
2640
|
timeExecute: Date;
|
2641
|
+
status: EStatusTaskToolSocials;
|
2635
2642
|
numberView: number;
|
2636
2643
|
isBasicView: boolean;
|
2637
2644
|
isLike: boolean;
|
2638
2645
|
numberLike: number;
|
2639
2646
|
minuteRun: number;
|
2640
|
-
status: EStatusTaskToolSocials;
|
2641
|
-
note: string;
|
2642
2647
|
}
|
2643
2648
|
|
2644
2649
|
interface ITaskInstagramInteractReel extends IBaseModel, ITrackingModel<IUser> {
|
@@ -2652,6 +2657,7 @@ interface ITaskInstagramInteractReel extends IBaseModel, ITrackingModel<IUser> {
|
|
2652
2657
|
service: string;
|
2653
2658
|
action: string;
|
2654
2659
|
timeExecute: Date;
|
2660
|
+
status: EStatusTaskToolSocials;
|
2655
2661
|
numberView: number;
|
2656
2662
|
isLike: boolean;
|
2657
2663
|
numberLike: number;
|
@@ -2669,6 +2675,7 @@ interface ITaskInstagramInteractStory extends IBaseModel, ITrackingModel<IUser>
|
|
2669
2675
|
service: string;
|
2670
2676
|
action: string;
|
2671
2677
|
timeExecute: Date;
|
2678
|
+
status: EStatusTaskToolSocials;
|
2672
2679
|
numberView: number;
|
2673
2680
|
isLike: boolean;
|
2674
2681
|
numberLike: number;
|
package/dist/index.d.ts
CHANGED
@@ -2478,6 +2478,7 @@ interface ITaskInstagramBlockUser extends IBaseModel, ITrackingModel<IUser> {
|
|
2478
2478
|
service: string;
|
2479
2479
|
action: string;
|
2480
2480
|
timeExecute: Date;
|
2481
|
+
status: EStatusTaskToolSocials;
|
2481
2482
|
typeChange: 'block' | 'hidden' | 'restrict';
|
2482
2483
|
blockUserNameIg: string;
|
2483
2484
|
restrictUserNameIg: string;
|
@@ -2497,6 +2498,7 @@ interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
2497
2498
|
service: string;
|
2498
2499
|
action: string;
|
2499
2500
|
timeExecute: Date;
|
2501
|
+
status: EStatusTaskToolSocials;
|
2500
2502
|
typeChange: 'info' | 'bio' | 'password' | 'code2FA' | 'email' | 'link' | 'avatar' | 'cover';
|
2501
2503
|
oldUserName: string;
|
2502
2504
|
changeUserNameNew: string;
|
@@ -2531,6 +2533,7 @@ interface ITaskInstagramFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
2531
2533
|
service: string;
|
2532
2534
|
action: string;
|
2533
2535
|
timeExecute: Date;
|
2536
|
+
status: EStatusTaskToolSocials;
|
2534
2537
|
listUsernameFollow: string[];
|
2535
2538
|
}
|
2536
2539
|
|
@@ -2547,6 +2550,7 @@ interface ITaskInstagramReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
2547
2550
|
service: string;
|
2548
2551
|
action: string;
|
2549
2552
|
timeExecute: Date;
|
2553
|
+
status: EStatusTaskToolSocials;
|
2550
2554
|
postUrlReply: string;
|
2551
2555
|
messageForReply: string;
|
2552
2556
|
replyCommentContentStep1: string;
|
@@ -2568,6 +2572,7 @@ interface ITaskInstagramReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
2568
2572
|
service: string;
|
2569
2573
|
action: string;
|
2570
2574
|
timeExecute: Date;
|
2575
|
+
status: EStatusTaskToolSocials;
|
2571
2576
|
postUrlReply: string;
|
2572
2577
|
messageForReply: string;
|
2573
2578
|
replyMessageContentStep1: string;
|
@@ -2589,6 +2594,7 @@ interface ITaskInstagramPost extends IBaseModel, ITrackingModel<IUser> {
|
|
2589
2594
|
service: string;
|
2590
2595
|
action: string;
|
2591
2596
|
timeExecute: Date;
|
2597
|
+
status: EStatusTaskToolSocials;
|
2592
2598
|
canvaUrlVideo: string;
|
2593
2599
|
canvaImageThumb: string;
|
2594
2600
|
canvaImagePage1: string;
|
@@ -2632,13 +2638,12 @@ interface ITaskInstagramInteractExplore extends IBaseModel, ITrackingModel<IUser
|
|
2632
2638
|
service: string;
|
2633
2639
|
action: string;
|
2634
2640
|
timeExecute: Date;
|
2641
|
+
status: EStatusTaskToolSocials;
|
2635
2642
|
numberView: number;
|
2636
2643
|
isBasicView: boolean;
|
2637
2644
|
isLike: boolean;
|
2638
2645
|
numberLike: number;
|
2639
2646
|
minuteRun: number;
|
2640
|
-
status: EStatusTaskToolSocials;
|
2641
|
-
note: string;
|
2642
2647
|
}
|
2643
2648
|
|
2644
2649
|
interface ITaskInstagramInteractReel extends IBaseModel, ITrackingModel<IUser> {
|
@@ -2652,6 +2657,7 @@ interface ITaskInstagramInteractReel extends IBaseModel, ITrackingModel<IUser> {
|
|
2652
2657
|
service: string;
|
2653
2658
|
action: string;
|
2654
2659
|
timeExecute: Date;
|
2660
|
+
status: EStatusTaskToolSocials;
|
2655
2661
|
numberView: number;
|
2656
2662
|
isLike: boolean;
|
2657
2663
|
numberLike: number;
|
@@ -2669,6 +2675,7 @@ interface ITaskInstagramInteractStory extends IBaseModel, ITrackingModel<IUser>
|
|
2669
2675
|
service: string;
|
2670
2676
|
action: string;
|
2671
2677
|
timeExecute: Date;
|
2678
|
+
status: EStatusTaskToolSocials;
|
2672
2679
|
numberView: number;
|
2673
2680
|
isLike: boolean;
|
2674
2681
|
numberLike: number;
|