automation-lib 5.1.127 → 5.1.128
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 +26 -0
- package/dist/index.d.ts +26 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -2359,6 +2359,8 @@ interface ITaskThreadsPost extends IBaseModel, ITrackingModel<IUser> {
|
|
2359
2359
|
action: string;
|
2360
2360
|
timeExecute: Date;
|
2361
2361
|
status: EStatusTaskToolSocials;
|
2362
|
+
dayOfWeekUS: string;
|
2363
|
+
timeExecuteUS: Date;
|
2362
2364
|
canvaUrlVideo: string;
|
2363
2365
|
canvaImageThumb: string;
|
2364
2366
|
canvaImagePage1: string;
|
@@ -2384,6 +2386,8 @@ interface ITaskThreadsFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
2384
2386
|
action: string;
|
2385
2387
|
timeExecute: Date;
|
2386
2388
|
status: EStatusTaskToolSocials;
|
2389
|
+
dayOfWeekUS: string;
|
2390
|
+
timeExecuteUS: Date;
|
2387
2391
|
listUsernameFollow: string[];
|
2388
2392
|
}
|
2389
2393
|
|
@@ -2402,6 +2406,8 @@ interface ITaskThreadsReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
2402
2406
|
action: string;
|
2403
2407
|
timeExecute: Date;
|
2404
2408
|
status: EStatusTaskToolSocials;
|
2409
|
+
dayOfWeekUS: string;
|
2410
|
+
timeExecuteUS: Date;
|
2405
2411
|
postUrlReply: string;
|
2406
2412
|
messageForReply: string;
|
2407
2413
|
replyCommentContentStep1: string;
|
@@ -2425,6 +2431,8 @@ interface ITaskThreadsReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
2425
2431
|
action: string;
|
2426
2432
|
timeExecute: Date;
|
2427
2433
|
status: EStatusTaskToolSocials;
|
2434
|
+
dayOfWeekUS: string;
|
2435
|
+
timeExecuteUS: Date;
|
2428
2436
|
postUrlReply: string;
|
2429
2437
|
messageForReply: string;
|
2430
2438
|
replyMessageContentStep1: string;
|
@@ -2456,6 +2464,8 @@ interface ITaskInstagramBlockUser extends IBaseModel, ITrackingModel<IUser> {
|
|
2456
2464
|
action: string;
|
2457
2465
|
timeExecute: Date;
|
2458
2466
|
status: EStatusTaskToolSocials;
|
2467
|
+
dayOfWeekUS: string;
|
2468
|
+
timeExecuteUS: Date;
|
2459
2469
|
typeChange: 'block' | 'hidden' | 'restrict';
|
2460
2470
|
blockUserNameIg: string;
|
2461
2471
|
restrictUserNameIg: string;
|
@@ -2477,6 +2487,8 @@ interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
2477
2487
|
action: string;
|
2478
2488
|
timeExecute: Date;
|
2479
2489
|
status: EStatusTaskToolSocials;
|
2490
|
+
dayOfWeekUS: string;
|
2491
|
+
timeExecuteUS: Date;
|
2480
2492
|
oldUserName: string;
|
2481
2493
|
typeChange: 'info' | 'bio' | 'password' | 'code2FA' | 'email' | 'link' | 'avatar' | 'cover';
|
2482
2494
|
changeUserNameNew: string;
|
@@ -2513,6 +2525,8 @@ interface ITaskInstagramFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
2513
2525
|
action: string;
|
2514
2526
|
timeExecute: Date;
|
2515
2527
|
status: EStatusTaskToolSocials;
|
2528
|
+
dayOfWeekUS: string;
|
2529
|
+
timeExecuteUS: Date;
|
2516
2530
|
listUsernameFollow: string[];
|
2517
2531
|
}
|
2518
2532
|
|
@@ -2531,6 +2545,8 @@ interface ITaskInstagramReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
2531
2545
|
action: string;
|
2532
2546
|
timeExecute: Date;
|
2533
2547
|
status: EStatusTaskToolSocials;
|
2548
|
+
dayOfWeekUS: string;
|
2549
|
+
timeExecuteUS: Date;
|
2534
2550
|
postUrlReply: string;
|
2535
2551
|
messageForReply: string;
|
2536
2552
|
replyCommentContentStep1: string;
|
@@ -2554,6 +2570,8 @@ interface ITaskInstagramReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
2554
2570
|
action: string;
|
2555
2571
|
timeExecute: Date;
|
2556
2572
|
status: EStatusTaskToolSocials;
|
2573
|
+
dayOfWeekUS: string;
|
2574
|
+
timeExecuteUS: Date;
|
2557
2575
|
postUrlReply: string;
|
2558
2576
|
messageForReply: string;
|
2559
2577
|
replyMessageContentStep1: string;
|
@@ -2577,6 +2595,8 @@ interface ITaskInstagramPost extends IBaseModel, ITrackingModel<IUser> {
|
|
2577
2595
|
action: string;
|
2578
2596
|
timeExecute: Date;
|
2579
2597
|
status: EStatusTaskToolSocials;
|
2598
|
+
dayOfWeekUS: string;
|
2599
|
+
timeExecuteUS: Date;
|
2580
2600
|
canvaUrlVideo: string;
|
2581
2601
|
canvaImageThumb: string;
|
2582
2602
|
canvaImagePage1: string;
|
@@ -2622,6 +2642,8 @@ interface ITaskInstagramInteractExplore extends IBaseModel, ITrackingModel<IUser
|
|
2622
2642
|
action: string;
|
2623
2643
|
timeExecute: Date;
|
2624
2644
|
status: EStatusTaskToolSocials;
|
2645
|
+
dayOfWeekUS: string;
|
2646
|
+
timeExecuteUS: Date;
|
2625
2647
|
numberView: number;
|
2626
2648
|
isBasicView: boolean;
|
2627
2649
|
isLike: boolean;
|
@@ -2642,6 +2664,8 @@ interface ITaskInstagramInteractReel extends IBaseModel, ITrackingModel<IUser> {
|
|
2642
2664
|
action: string;
|
2643
2665
|
timeExecute: Date;
|
2644
2666
|
status: EStatusTaskToolSocials;
|
2667
|
+
dayOfWeekUS: string;
|
2668
|
+
timeExecuteUS: Date;
|
2645
2669
|
numberView: number;
|
2646
2670
|
isLike: boolean;
|
2647
2671
|
numberLike: number;
|
@@ -2661,6 +2685,8 @@ interface ITaskInstagramInteractStory extends IBaseModel, ITrackingModel<IUser>
|
|
2661
2685
|
action: string;
|
2662
2686
|
timeExecute: Date;
|
2663
2687
|
status: EStatusTaskToolSocials;
|
2688
|
+
dayOfWeekUS: string;
|
2689
|
+
timeExecuteUS: Date;
|
2664
2690
|
numberView: number;
|
2665
2691
|
isLike: boolean;
|
2666
2692
|
numberLike: number;
|
package/dist/index.d.ts
CHANGED
@@ -2359,6 +2359,8 @@ interface ITaskThreadsPost extends IBaseModel, ITrackingModel<IUser> {
|
|
2359
2359
|
action: string;
|
2360
2360
|
timeExecute: Date;
|
2361
2361
|
status: EStatusTaskToolSocials;
|
2362
|
+
dayOfWeekUS: string;
|
2363
|
+
timeExecuteUS: Date;
|
2362
2364
|
canvaUrlVideo: string;
|
2363
2365
|
canvaImageThumb: string;
|
2364
2366
|
canvaImagePage1: string;
|
@@ -2384,6 +2386,8 @@ interface ITaskThreadsFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
2384
2386
|
action: string;
|
2385
2387
|
timeExecute: Date;
|
2386
2388
|
status: EStatusTaskToolSocials;
|
2389
|
+
dayOfWeekUS: string;
|
2390
|
+
timeExecuteUS: Date;
|
2387
2391
|
listUsernameFollow: string[];
|
2388
2392
|
}
|
2389
2393
|
|
@@ -2402,6 +2406,8 @@ interface ITaskThreadsReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
2402
2406
|
action: string;
|
2403
2407
|
timeExecute: Date;
|
2404
2408
|
status: EStatusTaskToolSocials;
|
2409
|
+
dayOfWeekUS: string;
|
2410
|
+
timeExecuteUS: Date;
|
2405
2411
|
postUrlReply: string;
|
2406
2412
|
messageForReply: string;
|
2407
2413
|
replyCommentContentStep1: string;
|
@@ -2425,6 +2431,8 @@ interface ITaskThreadsReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
2425
2431
|
action: string;
|
2426
2432
|
timeExecute: Date;
|
2427
2433
|
status: EStatusTaskToolSocials;
|
2434
|
+
dayOfWeekUS: string;
|
2435
|
+
timeExecuteUS: Date;
|
2428
2436
|
postUrlReply: string;
|
2429
2437
|
messageForReply: string;
|
2430
2438
|
replyMessageContentStep1: string;
|
@@ -2456,6 +2464,8 @@ interface ITaskInstagramBlockUser extends IBaseModel, ITrackingModel<IUser> {
|
|
2456
2464
|
action: string;
|
2457
2465
|
timeExecute: Date;
|
2458
2466
|
status: EStatusTaskToolSocials;
|
2467
|
+
dayOfWeekUS: string;
|
2468
|
+
timeExecuteUS: Date;
|
2459
2469
|
typeChange: 'block' | 'hidden' | 'restrict';
|
2460
2470
|
blockUserNameIg: string;
|
2461
2471
|
restrictUserNameIg: string;
|
@@ -2477,6 +2487,8 @@ interface ITaskInstagramChangeInfo extends IBaseModel, ITrackingModel<IUser> {
|
|
2477
2487
|
action: string;
|
2478
2488
|
timeExecute: Date;
|
2479
2489
|
status: EStatusTaskToolSocials;
|
2490
|
+
dayOfWeekUS: string;
|
2491
|
+
timeExecuteUS: Date;
|
2480
2492
|
oldUserName: string;
|
2481
2493
|
typeChange: 'info' | 'bio' | 'password' | 'code2FA' | 'email' | 'link' | 'avatar' | 'cover';
|
2482
2494
|
changeUserNameNew: string;
|
@@ -2513,6 +2525,8 @@ interface ITaskInstagramFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
2513
2525
|
action: string;
|
2514
2526
|
timeExecute: Date;
|
2515
2527
|
status: EStatusTaskToolSocials;
|
2528
|
+
dayOfWeekUS: string;
|
2529
|
+
timeExecuteUS: Date;
|
2516
2530
|
listUsernameFollow: string[];
|
2517
2531
|
}
|
2518
2532
|
|
@@ -2531,6 +2545,8 @@ interface ITaskInstagramReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
2531
2545
|
action: string;
|
2532
2546
|
timeExecute: Date;
|
2533
2547
|
status: EStatusTaskToolSocials;
|
2548
|
+
dayOfWeekUS: string;
|
2549
|
+
timeExecuteUS: Date;
|
2534
2550
|
postUrlReply: string;
|
2535
2551
|
messageForReply: string;
|
2536
2552
|
replyCommentContentStep1: string;
|
@@ -2554,6 +2570,8 @@ interface ITaskInstagramReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
2554
2570
|
action: string;
|
2555
2571
|
timeExecute: Date;
|
2556
2572
|
status: EStatusTaskToolSocials;
|
2573
|
+
dayOfWeekUS: string;
|
2574
|
+
timeExecuteUS: Date;
|
2557
2575
|
postUrlReply: string;
|
2558
2576
|
messageForReply: string;
|
2559
2577
|
replyMessageContentStep1: string;
|
@@ -2577,6 +2595,8 @@ interface ITaskInstagramPost extends IBaseModel, ITrackingModel<IUser> {
|
|
2577
2595
|
action: string;
|
2578
2596
|
timeExecute: Date;
|
2579
2597
|
status: EStatusTaskToolSocials;
|
2598
|
+
dayOfWeekUS: string;
|
2599
|
+
timeExecuteUS: Date;
|
2580
2600
|
canvaUrlVideo: string;
|
2581
2601
|
canvaImageThumb: string;
|
2582
2602
|
canvaImagePage1: string;
|
@@ -2622,6 +2642,8 @@ interface ITaskInstagramInteractExplore extends IBaseModel, ITrackingModel<IUser
|
|
2622
2642
|
action: string;
|
2623
2643
|
timeExecute: Date;
|
2624
2644
|
status: EStatusTaskToolSocials;
|
2645
|
+
dayOfWeekUS: string;
|
2646
|
+
timeExecuteUS: Date;
|
2625
2647
|
numberView: number;
|
2626
2648
|
isBasicView: boolean;
|
2627
2649
|
isLike: boolean;
|
@@ -2642,6 +2664,8 @@ interface ITaskInstagramInteractReel extends IBaseModel, ITrackingModel<IUser> {
|
|
2642
2664
|
action: string;
|
2643
2665
|
timeExecute: Date;
|
2644
2666
|
status: EStatusTaskToolSocials;
|
2667
|
+
dayOfWeekUS: string;
|
2668
|
+
timeExecuteUS: Date;
|
2645
2669
|
numberView: number;
|
2646
2670
|
isLike: boolean;
|
2647
2671
|
numberLike: number;
|
@@ -2661,6 +2685,8 @@ interface ITaskInstagramInteractStory extends IBaseModel, ITrackingModel<IUser>
|
|
2661
2685
|
action: string;
|
2662
2686
|
timeExecute: Date;
|
2663
2687
|
status: EStatusTaskToolSocials;
|
2688
|
+
dayOfWeekUS: string;
|
2689
|
+
timeExecuteUS: Date;
|
2664
2690
|
numberView: number;
|
2665
2691
|
isLike: boolean;
|
2666
2692
|
numberLike: number;
|