automation-lib 5.1.127 → 5.1.129
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 +27 -0
- package/dist/index.d.ts +27 -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,11 +2487,14 @@ 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;
|
2483
2495
|
changeFullnameNew: string;
|
2484
2496
|
changeBioNew: string;
|
2497
|
+
passwordNew: string;
|
2485
2498
|
emailNew: string;
|
2486
2499
|
code2fa: string;
|
2487
2500
|
nameLink1: string;
|
@@ -2513,6 +2526,8 @@ interface ITaskInstagramFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
2513
2526
|
action: string;
|
2514
2527
|
timeExecute: Date;
|
2515
2528
|
status: EStatusTaskToolSocials;
|
2529
|
+
dayOfWeekUS: string;
|
2530
|
+
timeExecuteUS: Date;
|
2516
2531
|
listUsernameFollow: string[];
|
2517
2532
|
}
|
2518
2533
|
|
@@ -2531,6 +2546,8 @@ interface ITaskInstagramReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
2531
2546
|
action: string;
|
2532
2547
|
timeExecute: Date;
|
2533
2548
|
status: EStatusTaskToolSocials;
|
2549
|
+
dayOfWeekUS: string;
|
2550
|
+
timeExecuteUS: Date;
|
2534
2551
|
postUrlReply: string;
|
2535
2552
|
messageForReply: string;
|
2536
2553
|
replyCommentContentStep1: string;
|
@@ -2554,6 +2571,8 @@ interface ITaskInstagramReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
2554
2571
|
action: string;
|
2555
2572
|
timeExecute: Date;
|
2556
2573
|
status: EStatusTaskToolSocials;
|
2574
|
+
dayOfWeekUS: string;
|
2575
|
+
timeExecuteUS: Date;
|
2557
2576
|
postUrlReply: string;
|
2558
2577
|
messageForReply: string;
|
2559
2578
|
replyMessageContentStep1: string;
|
@@ -2577,6 +2596,8 @@ interface ITaskInstagramPost extends IBaseModel, ITrackingModel<IUser> {
|
|
2577
2596
|
action: string;
|
2578
2597
|
timeExecute: Date;
|
2579
2598
|
status: EStatusTaskToolSocials;
|
2599
|
+
dayOfWeekUS: string;
|
2600
|
+
timeExecuteUS: Date;
|
2580
2601
|
canvaUrlVideo: string;
|
2581
2602
|
canvaImageThumb: string;
|
2582
2603
|
canvaImagePage1: string;
|
@@ -2622,6 +2643,8 @@ interface ITaskInstagramInteractExplore extends IBaseModel, ITrackingModel<IUser
|
|
2622
2643
|
action: string;
|
2623
2644
|
timeExecute: Date;
|
2624
2645
|
status: EStatusTaskToolSocials;
|
2646
|
+
dayOfWeekUS: string;
|
2647
|
+
timeExecuteUS: Date;
|
2625
2648
|
numberView: number;
|
2626
2649
|
isBasicView: boolean;
|
2627
2650
|
isLike: boolean;
|
@@ -2642,6 +2665,8 @@ interface ITaskInstagramInteractReel extends IBaseModel, ITrackingModel<IUser> {
|
|
2642
2665
|
action: string;
|
2643
2666
|
timeExecute: Date;
|
2644
2667
|
status: EStatusTaskToolSocials;
|
2668
|
+
dayOfWeekUS: string;
|
2669
|
+
timeExecuteUS: Date;
|
2645
2670
|
numberView: number;
|
2646
2671
|
isLike: boolean;
|
2647
2672
|
numberLike: number;
|
@@ -2661,6 +2686,8 @@ interface ITaskInstagramInteractStory extends IBaseModel, ITrackingModel<IUser>
|
|
2661
2686
|
action: string;
|
2662
2687
|
timeExecute: Date;
|
2663
2688
|
status: EStatusTaskToolSocials;
|
2689
|
+
dayOfWeekUS: string;
|
2690
|
+
timeExecuteUS: Date;
|
2664
2691
|
numberView: number;
|
2665
2692
|
isLike: boolean;
|
2666
2693
|
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,11 +2487,14 @@ 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;
|
2483
2495
|
changeFullnameNew: string;
|
2484
2496
|
changeBioNew: string;
|
2497
|
+
passwordNew: string;
|
2485
2498
|
emailNew: string;
|
2486
2499
|
code2fa: string;
|
2487
2500
|
nameLink1: string;
|
@@ -2513,6 +2526,8 @@ interface ITaskInstagramFollow extends IBaseModel, ITrackingModel<IUser> {
|
|
2513
2526
|
action: string;
|
2514
2527
|
timeExecute: Date;
|
2515
2528
|
status: EStatusTaskToolSocials;
|
2529
|
+
dayOfWeekUS: string;
|
2530
|
+
timeExecuteUS: Date;
|
2516
2531
|
listUsernameFollow: string[];
|
2517
2532
|
}
|
2518
2533
|
|
@@ -2531,6 +2546,8 @@ interface ITaskInstagramReplyComment extends IBaseModel, ITrackingModel<IUser> {
|
|
2531
2546
|
action: string;
|
2532
2547
|
timeExecute: Date;
|
2533
2548
|
status: EStatusTaskToolSocials;
|
2549
|
+
dayOfWeekUS: string;
|
2550
|
+
timeExecuteUS: Date;
|
2534
2551
|
postUrlReply: string;
|
2535
2552
|
messageForReply: string;
|
2536
2553
|
replyCommentContentStep1: string;
|
@@ -2554,6 +2571,8 @@ interface ITaskInstagramReplyMessage extends IBaseModel, ITrackingModel<IUser> {
|
|
2554
2571
|
action: string;
|
2555
2572
|
timeExecute: Date;
|
2556
2573
|
status: EStatusTaskToolSocials;
|
2574
|
+
dayOfWeekUS: string;
|
2575
|
+
timeExecuteUS: Date;
|
2557
2576
|
postUrlReply: string;
|
2558
2577
|
messageForReply: string;
|
2559
2578
|
replyMessageContentStep1: string;
|
@@ -2577,6 +2596,8 @@ interface ITaskInstagramPost extends IBaseModel, ITrackingModel<IUser> {
|
|
2577
2596
|
action: string;
|
2578
2597
|
timeExecute: Date;
|
2579
2598
|
status: EStatusTaskToolSocials;
|
2599
|
+
dayOfWeekUS: string;
|
2600
|
+
timeExecuteUS: Date;
|
2580
2601
|
canvaUrlVideo: string;
|
2581
2602
|
canvaImageThumb: string;
|
2582
2603
|
canvaImagePage1: string;
|
@@ -2622,6 +2643,8 @@ interface ITaskInstagramInteractExplore extends IBaseModel, ITrackingModel<IUser
|
|
2622
2643
|
action: string;
|
2623
2644
|
timeExecute: Date;
|
2624
2645
|
status: EStatusTaskToolSocials;
|
2646
|
+
dayOfWeekUS: string;
|
2647
|
+
timeExecuteUS: Date;
|
2625
2648
|
numberView: number;
|
2626
2649
|
isBasicView: boolean;
|
2627
2650
|
isLike: boolean;
|
@@ -2642,6 +2665,8 @@ interface ITaskInstagramInteractReel extends IBaseModel, ITrackingModel<IUser> {
|
|
2642
2665
|
action: string;
|
2643
2666
|
timeExecute: Date;
|
2644
2667
|
status: EStatusTaskToolSocials;
|
2668
|
+
dayOfWeekUS: string;
|
2669
|
+
timeExecuteUS: Date;
|
2645
2670
|
numberView: number;
|
2646
2671
|
isLike: boolean;
|
2647
2672
|
numberLike: number;
|
@@ -2661,6 +2686,8 @@ interface ITaskInstagramInteractStory extends IBaseModel, ITrackingModel<IUser>
|
|
2661
2686
|
action: string;
|
2662
2687
|
timeExecute: Date;
|
2663
2688
|
status: EStatusTaskToolSocials;
|
2689
|
+
dayOfWeekUS: string;
|
2690
|
+
timeExecuteUS: Date;
|
2664
2691
|
numberView: number;
|
2665
2692
|
isLike: boolean;
|
2666
2693
|
numberLike: number;
|