automation-lib 5.4.129 → 5.4.131
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 +144 -4
- package/dist/index.d.ts +144 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -7315,6 +7315,34 @@ interface CreateTaskInstagramReplyCommentDto extends Partial<ITaskInstagramReply
|
|
|
7315
7315
|
interface UpdateTaskInstagramReplyCommentDto extends Partial<ITaskInstagramReplyComment> {
|
|
7316
7316
|
}
|
|
7317
7317
|
interface FindTaskInstagramReplyCommentDto extends IFindBaseDto, ITaskInstagramReplyComment {
|
|
7318
|
+
idea: {
|
|
7319
|
+
id: string;
|
|
7320
|
+
name: string;
|
|
7321
|
+
};
|
|
7322
|
+
niche: {
|
|
7323
|
+
id: string;
|
|
7324
|
+
name: string;
|
|
7325
|
+
};
|
|
7326
|
+
type: ETypeManagerWorkClassify;
|
|
7327
|
+
pc: {
|
|
7328
|
+
id: string;
|
|
7329
|
+
name: string;
|
|
7330
|
+
};
|
|
7331
|
+
device: {
|
|
7332
|
+
id: string;
|
|
7333
|
+
name: string;
|
|
7334
|
+
};
|
|
7335
|
+
accountGroup: {
|
|
7336
|
+
id: string;
|
|
7337
|
+
name: string;
|
|
7338
|
+
};
|
|
7339
|
+
accountInfo: {
|
|
7340
|
+
id: string;
|
|
7341
|
+
name: string;
|
|
7342
|
+
nameAppCloneSocial: string;
|
|
7343
|
+
accountDeviceTypeAppClone: string;
|
|
7344
|
+
accountDeviceNameAppClone: string;
|
|
7345
|
+
};
|
|
7318
7346
|
}
|
|
7319
7347
|
interface FilterTaskInstagramReplyCommentDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
7320
7348
|
idea: string[];
|
|
@@ -7359,6 +7387,34 @@ interface CreateTaskInstagramReplyMessageDto extends Partial<ITaskInstagramReply
|
|
|
7359
7387
|
interface UpdateTaskInstagramReplyMessageDto extends Partial<ITaskInstagramReplyMessage> {
|
|
7360
7388
|
}
|
|
7361
7389
|
interface FindTaskInstagramReplyMessageDto extends IFindBaseDto, ITaskInstagramReplyMessage {
|
|
7390
|
+
idea: {
|
|
7391
|
+
id: string;
|
|
7392
|
+
name: string;
|
|
7393
|
+
};
|
|
7394
|
+
niche: {
|
|
7395
|
+
id: string;
|
|
7396
|
+
name: string;
|
|
7397
|
+
};
|
|
7398
|
+
type: ETypeManagerWorkClassify;
|
|
7399
|
+
pc: {
|
|
7400
|
+
id: string;
|
|
7401
|
+
name: string;
|
|
7402
|
+
};
|
|
7403
|
+
device: {
|
|
7404
|
+
id: string;
|
|
7405
|
+
name: string;
|
|
7406
|
+
};
|
|
7407
|
+
accountGroup: {
|
|
7408
|
+
id: string;
|
|
7409
|
+
name: string;
|
|
7410
|
+
};
|
|
7411
|
+
accountInfo: {
|
|
7412
|
+
id: string;
|
|
7413
|
+
name: string;
|
|
7414
|
+
nameAppCloneSocial: string;
|
|
7415
|
+
accountDeviceTypeAppClone: string;
|
|
7416
|
+
accountDeviceNameAppClone: string;
|
|
7417
|
+
};
|
|
7362
7418
|
}
|
|
7363
7419
|
interface FilterTaskInstagramReplyMessageDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
7364
7420
|
idea: string[];
|
|
@@ -7577,6 +7633,34 @@ interface CreateTaskInstagramInteractExploreDto extends Partial<ITaskInstagramIn
|
|
|
7577
7633
|
interface UpdateTaskInstagramInteractExploreDto extends Partial<ITaskInstagramInteractExplore> {
|
|
7578
7634
|
}
|
|
7579
7635
|
interface FindTaskInstagramInteractExploreDto extends IFindBaseDto, ITaskInstagramInteractExplore {
|
|
7636
|
+
idea: {
|
|
7637
|
+
id: string;
|
|
7638
|
+
name: string;
|
|
7639
|
+
};
|
|
7640
|
+
niche: {
|
|
7641
|
+
id: string;
|
|
7642
|
+
name: string;
|
|
7643
|
+
};
|
|
7644
|
+
type: ETypeManagerWorkClassify;
|
|
7645
|
+
pc: {
|
|
7646
|
+
id: string;
|
|
7647
|
+
name: string;
|
|
7648
|
+
};
|
|
7649
|
+
device: {
|
|
7650
|
+
id: string;
|
|
7651
|
+
name: string;
|
|
7652
|
+
};
|
|
7653
|
+
accountGroup: {
|
|
7654
|
+
id: string;
|
|
7655
|
+
name: string;
|
|
7656
|
+
};
|
|
7657
|
+
accountInfo: {
|
|
7658
|
+
id: string;
|
|
7659
|
+
name: string;
|
|
7660
|
+
nameAppCloneSocial: string;
|
|
7661
|
+
accountDeviceTypeAppClone: string;
|
|
7662
|
+
accountDeviceNameAppClone: string;
|
|
7663
|
+
};
|
|
7580
7664
|
}
|
|
7581
7665
|
interface FilterTaskInstagramInteractExploreDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
7582
7666
|
idea: string[];
|
|
@@ -7620,6 +7704,34 @@ interface CreateTaskInstagramInteractReelDto extends Partial<ITaskInstagramInter
|
|
|
7620
7704
|
interface UpdateTaskInstagramInteractReelDto extends Partial<ITaskInstagramInteractReel> {
|
|
7621
7705
|
}
|
|
7622
7706
|
interface FindTaskInstagramInteractReelDto extends IFindBaseDto, ITaskInstagramInteractReel {
|
|
7707
|
+
idea: {
|
|
7708
|
+
id: string;
|
|
7709
|
+
name: string;
|
|
7710
|
+
};
|
|
7711
|
+
niche: {
|
|
7712
|
+
id: string;
|
|
7713
|
+
name: string;
|
|
7714
|
+
};
|
|
7715
|
+
type: ETypeManagerWorkClassify;
|
|
7716
|
+
pc: {
|
|
7717
|
+
id: string;
|
|
7718
|
+
name: string;
|
|
7719
|
+
};
|
|
7720
|
+
device: {
|
|
7721
|
+
id: string;
|
|
7722
|
+
name: string;
|
|
7723
|
+
};
|
|
7724
|
+
accountGroup: {
|
|
7725
|
+
id: string;
|
|
7726
|
+
name: string;
|
|
7727
|
+
};
|
|
7728
|
+
accountInfo: {
|
|
7729
|
+
id: string;
|
|
7730
|
+
name: string;
|
|
7731
|
+
nameAppCloneSocial: string;
|
|
7732
|
+
accountDeviceTypeAppClone: string;
|
|
7733
|
+
accountDeviceNameAppClone: string;
|
|
7734
|
+
};
|
|
7623
7735
|
}
|
|
7624
7736
|
interface FilterTaskInstagramInteractReelDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
7625
7737
|
idea: string[];
|
|
@@ -7663,6 +7775,34 @@ interface CreateTaskInstagramInteractStoryDto extends Partial<ITaskInstagramInte
|
|
|
7663
7775
|
interface UpdateTaskInstagramInteractStoryDto extends Partial<ITaskInstagramInteractStory> {
|
|
7664
7776
|
}
|
|
7665
7777
|
interface FindTaskInstagramInteractStoryDto extends IFindBaseDto, ITaskInstagramInteractStory {
|
|
7778
|
+
idea: {
|
|
7779
|
+
id: string;
|
|
7780
|
+
name: string;
|
|
7781
|
+
};
|
|
7782
|
+
niche: {
|
|
7783
|
+
id: string;
|
|
7784
|
+
name: string;
|
|
7785
|
+
};
|
|
7786
|
+
type: ETypeManagerWorkClassify;
|
|
7787
|
+
pc: {
|
|
7788
|
+
id: string;
|
|
7789
|
+
name: string;
|
|
7790
|
+
};
|
|
7791
|
+
device: {
|
|
7792
|
+
id: string;
|
|
7793
|
+
name: string;
|
|
7794
|
+
};
|
|
7795
|
+
accountGroup: {
|
|
7796
|
+
id: string;
|
|
7797
|
+
name: string;
|
|
7798
|
+
};
|
|
7799
|
+
accountInfo: {
|
|
7800
|
+
id: string;
|
|
7801
|
+
name: string;
|
|
7802
|
+
nameAppCloneSocial: string;
|
|
7803
|
+
accountDeviceTypeAppClone: string;
|
|
7804
|
+
accountDeviceNameAppClone: string;
|
|
7805
|
+
};
|
|
7666
7806
|
}
|
|
7667
7807
|
interface FilterTaskInstagramInteractStoryDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
7668
7808
|
idea: string[];
|
|
@@ -11241,7 +11381,7 @@ interface IInstagramReportPostNew extends IBaseModel, ITrackingTimeScript, ITrac
|
|
|
11241
11381
|
cmtPost: string;
|
|
11242
11382
|
cmtStickerPostMe: string;
|
|
11243
11383
|
tagUserPostMe: string;
|
|
11244
|
-
isSuggestFB:
|
|
11384
|
+
isSuggestFB: boolean;
|
|
11245
11385
|
idPostToSheet: string;
|
|
11246
11386
|
}
|
|
11247
11387
|
interface IInstagramReportPostNewELS extends IBaseELS {
|
|
@@ -11283,7 +11423,7 @@ interface IInstagramReportPostNewELS extends IBaseELS {
|
|
|
11283
11423
|
cmtPost: string;
|
|
11284
11424
|
cmtStickerPostMe: string;
|
|
11285
11425
|
tagUserPostMe: string;
|
|
11286
|
-
isSuggestFB:
|
|
11426
|
+
isSuggestFB: boolean;
|
|
11287
11427
|
idPostToSheet: string;
|
|
11288
11428
|
}
|
|
11289
11429
|
|
|
@@ -11314,7 +11454,7 @@ interface IInstagramReportPostSquare extends IBaseModel, ITrackingTimeScript, IT
|
|
|
11314
11454
|
cmtPost: string;
|
|
11315
11455
|
cmtStickerPostMe: string;
|
|
11316
11456
|
tagUserPostMe: string;
|
|
11317
|
-
isSuggestFB:
|
|
11457
|
+
isSuggestFB: boolean;
|
|
11318
11458
|
idPostToSheet: string;
|
|
11319
11459
|
}
|
|
11320
11460
|
interface IInstagramReportPostSquareELS extends IBaseELS {
|
|
@@ -11356,7 +11496,7 @@ interface IInstagramReportPostSquareELS extends IBaseELS {
|
|
|
11356
11496
|
cmtPost: string;
|
|
11357
11497
|
cmtStickerPostMe: string;
|
|
11358
11498
|
tagUserPostMe: string;
|
|
11359
|
-
isSuggestFB:
|
|
11499
|
+
isSuggestFB: boolean;
|
|
11360
11500
|
idPostToSheet: string;
|
|
11361
11501
|
}
|
|
11362
11502
|
|
package/dist/index.d.ts
CHANGED
|
@@ -7315,6 +7315,34 @@ interface CreateTaskInstagramReplyCommentDto extends Partial<ITaskInstagramReply
|
|
|
7315
7315
|
interface UpdateTaskInstagramReplyCommentDto extends Partial<ITaskInstagramReplyComment> {
|
|
7316
7316
|
}
|
|
7317
7317
|
interface FindTaskInstagramReplyCommentDto extends IFindBaseDto, ITaskInstagramReplyComment {
|
|
7318
|
+
idea: {
|
|
7319
|
+
id: string;
|
|
7320
|
+
name: string;
|
|
7321
|
+
};
|
|
7322
|
+
niche: {
|
|
7323
|
+
id: string;
|
|
7324
|
+
name: string;
|
|
7325
|
+
};
|
|
7326
|
+
type: ETypeManagerWorkClassify;
|
|
7327
|
+
pc: {
|
|
7328
|
+
id: string;
|
|
7329
|
+
name: string;
|
|
7330
|
+
};
|
|
7331
|
+
device: {
|
|
7332
|
+
id: string;
|
|
7333
|
+
name: string;
|
|
7334
|
+
};
|
|
7335
|
+
accountGroup: {
|
|
7336
|
+
id: string;
|
|
7337
|
+
name: string;
|
|
7338
|
+
};
|
|
7339
|
+
accountInfo: {
|
|
7340
|
+
id: string;
|
|
7341
|
+
name: string;
|
|
7342
|
+
nameAppCloneSocial: string;
|
|
7343
|
+
accountDeviceTypeAppClone: string;
|
|
7344
|
+
accountDeviceNameAppClone: string;
|
|
7345
|
+
};
|
|
7318
7346
|
}
|
|
7319
7347
|
interface FilterTaskInstagramReplyCommentDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
7320
7348
|
idea: string[];
|
|
@@ -7359,6 +7387,34 @@ interface CreateTaskInstagramReplyMessageDto extends Partial<ITaskInstagramReply
|
|
|
7359
7387
|
interface UpdateTaskInstagramReplyMessageDto extends Partial<ITaskInstagramReplyMessage> {
|
|
7360
7388
|
}
|
|
7361
7389
|
interface FindTaskInstagramReplyMessageDto extends IFindBaseDto, ITaskInstagramReplyMessage {
|
|
7390
|
+
idea: {
|
|
7391
|
+
id: string;
|
|
7392
|
+
name: string;
|
|
7393
|
+
};
|
|
7394
|
+
niche: {
|
|
7395
|
+
id: string;
|
|
7396
|
+
name: string;
|
|
7397
|
+
};
|
|
7398
|
+
type: ETypeManagerWorkClassify;
|
|
7399
|
+
pc: {
|
|
7400
|
+
id: string;
|
|
7401
|
+
name: string;
|
|
7402
|
+
};
|
|
7403
|
+
device: {
|
|
7404
|
+
id: string;
|
|
7405
|
+
name: string;
|
|
7406
|
+
};
|
|
7407
|
+
accountGroup: {
|
|
7408
|
+
id: string;
|
|
7409
|
+
name: string;
|
|
7410
|
+
};
|
|
7411
|
+
accountInfo: {
|
|
7412
|
+
id: string;
|
|
7413
|
+
name: string;
|
|
7414
|
+
nameAppCloneSocial: string;
|
|
7415
|
+
accountDeviceTypeAppClone: string;
|
|
7416
|
+
accountDeviceNameAppClone: string;
|
|
7417
|
+
};
|
|
7362
7418
|
}
|
|
7363
7419
|
interface FilterTaskInstagramReplyMessageDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
7364
7420
|
idea: string[];
|
|
@@ -7577,6 +7633,34 @@ interface CreateTaskInstagramInteractExploreDto extends Partial<ITaskInstagramIn
|
|
|
7577
7633
|
interface UpdateTaskInstagramInteractExploreDto extends Partial<ITaskInstagramInteractExplore> {
|
|
7578
7634
|
}
|
|
7579
7635
|
interface FindTaskInstagramInteractExploreDto extends IFindBaseDto, ITaskInstagramInteractExplore {
|
|
7636
|
+
idea: {
|
|
7637
|
+
id: string;
|
|
7638
|
+
name: string;
|
|
7639
|
+
};
|
|
7640
|
+
niche: {
|
|
7641
|
+
id: string;
|
|
7642
|
+
name: string;
|
|
7643
|
+
};
|
|
7644
|
+
type: ETypeManagerWorkClassify;
|
|
7645
|
+
pc: {
|
|
7646
|
+
id: string;
|
|
7647
|
+
name: string;
|
|
7648
|
+
};
|
|
7649
|
+
device: {
|
|
7650
|
+
id: string;
|
|
7651
|
+
name: string;
|
|
7652
|
+
};
|
|
7653
|
+
accountGroup: {
|
|
7654
|
+
id: string;
|
|
7655
|
+
name: string;
|
|
7656
|
+
};
|
|
7657
|
+
accountInfo: {
|
|
7658
|
+
id: string;
|
|
7659
|
+
name: string;
|
|
7660
|
+
nameAppCloneSocial: string;
|
|
7661
|
+
accountDeviceTypeAppClone: string;
|
|
7662
|
+
accountDeviceNameAppClone: string;
|
|
7663
|
+
};
|
|
7580
7664
|
}
|
|
7581
7665
|
interface FilterTaskInstagramInteractExploreDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
7582
7666
|
idea: string[];
|
|
@@ -7620,6 +7704,34 @@ interface CreateTaskInstagramInteractReelDto extends Partial<ITaskInstagramInter
|
|
|
7620
7704
|
interface UpdateTaskInstagramInteractReelDto extends Partial<ITaskInstagramInteractReel> {
|
|
7621
7705
|
}
|
|
7622
7706
|
interface FindTaskInstagramInteractReelDto extends IFindBaseDto, ITaskInstagramInteractReel {
|
|
7707
|
+
idea: {
|
|
7708
|
+
id: string;
|
|
7709
|
+
name: string;
|
|
7710
|
+
};
|
|
7711
|
+
niche: {
|
|
7712
|
+
id: string;
|
|
7713
|
+
name: string;
|
|
7714
|
+
};
|
|
7715
|
+
type: ETypeManagerWorkClassify;
|
|
7716
|
+
pc: {
|
|
7717
|
+
id: string;
|
|
7718
|
+
name: string;
|
|
7719
|
+
};
|
|
7720
|
+
device: {
|
|
7721
|
+
id: string;
|
|
7722
|
+
name: string;
|
|
7723
|
+
};
|
|
7724
|
+
accountGroup: {
|
|
7725
|
+
id: string;
|
|
7726
|
+
name: string;
|
|
7727
|
+
};
|
|
7728
|
+
accountInfo: {
|
|
7729
|
+
id: string;
|
|
7730
|
+
name: string;
|
|
7731
|
+
nameAppCloneSocial: string;
|
|
7732
|
+
accountDeviceTypeAppClone: string;
|
|
7733
|
+
accountDeviceNameAppClone: string;
|
|
7734
|
+
};
|
|
7623
7735
|
}
|
|
7624
7736
|
interface FilterTaskInstagramInteractReelDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
7625
7737
|
idea: string[];
|
|
@@ -7663,6 +7775,34 @@ interface CreateTaskInstagramInteractStoryDto extends Partial<ITaskInstagramInte
|
|
|
7663
7775
|
interface UpdateTaskInstagramInteractStoryDto extends Partial<ITaskInstagramInteractStory> {
|
|
7664
7776
|
}
|
|
7665
7777
|
interface FindTaskInstagramInteractStoryDto extends IFindBaseDto, ITaskInstagramInteractStory {
|
|
7778
|
+
idea: {
|
|
7779
|
+
id: string;
|
|
7780
|
+
name: string;
|
|
7781
|
+
};
|
|
7782
|
+
niche: {
|
|
7783
|
+
id: string;
|
|
7784
|
+
name: string;
|
|
7785
|
+
};
|
|
7786
|
+
type: ETypeManagerWorkClassify;
|
|
7787
|
+
pc: {
|
|
7788
|
+
id: string;
|
|
7789
|
+
name: string;
|
|
7790
|
+
};
|
|
7791
|
+
device: {
|
|
7792
|
+
id: string;
|
|
7793
|
+
name: string;
|
|
7794
|
+
};
|
|
7795
|
+
accountGroup: {
|
|
7796
|
+
id: string;
|
|
7797
|
+
name: string;
|
|
7798
|
+
};
|
|
7799
|
+
accountInfo: {
|
|
7800
|
+
id: string;
|
|
7801
|
+
name: string;
|
|
7802
|
+
nameAppCloneSocial: string;
|
|
7803
|
+
accountDeviceTypeAppClone: string;
|
|
7804
|
+
accountDeviceNameAppClone: string;
|
|
7805
|
+
};
|
|
7666
7806
|
}
|
|
7667
7807
|
interface FilterTaskInstagramInteractStoryDto extends IFilterBaseDto, IFilterBaseAccountSocialDto {
|
|
7668
7808
|
idea: string[];
|
|
@@ -11241,7 +11381,7 @@ interface IInstagramReportPostNew extends IBaseModel, ITrackingTimeScript, ITrac
|
|
|
11241
11381
|
cmtPost: string;
|
|
11242
11382
|
cmtStickerPostMe: string;
|
|
11243
11383
|
tagUserPostMe: string;
|
|
11244
|
-
isSuggestFB:
|
|
11384
|
+
isSuggestFB: boolean;
|
|
11245
11385
|
idPostToSheet: string;
|
|
11246
11386
|
}
|
|
11247
11387
|
interface IInstagramReportPostNewELS extends IBaseELS {
|
|
@@ -11283,7 +11423,7 @@ interface IInstagramReportPostNewELS extends IBaseELS {
|
|
|
11283
11423
|
cmtPost: string;
|
|
11284
11424
|
cmtStickerPostMe: string;
|
|
11285
11425
|
tagUserPostMe: string;
|
|
11286
|
-
isSuggestFB:
|
|
11426
|
+
isSuggestFB: boolean;
|
|
11287
11427
|
idPostToSheet: string;
|
|
11288
11428
|
}
|
|
11289
11429
|
|
|
@@ -11314,7 +11454,7 @@ interface IInstagramReportPostSquare extends IBaseModel, ITrackingTimeScript, IT
|
|
|
11314
11454
|
cmtPost: string;
|
|
11315
11455
|
cmtStickerPostMe: string;
|
|
11316
11456
|
tagUserPostMe: string;
|
|
11317
|
-
isSuggestFB:
|
|
11457
|
+
isSuggestFB: boolean;
|
|
11318
11458
|
idPostToSheet: string;
|
|
11319
11459
|
}
|
|
11320
11460
|
interface IInstagramReportPostSquareELS extends IBaseELS {
|
|
@@ -11356,7 +11496,7 @@ interface IInstagramReportPostSquareELS extends IBaseELS {
|
|
|
11356
11496
|
cmtPost: string;
|
|
11357
11497
|
cmtStickerPostMe: string;
|
|
11358
11498
|
tagUserPostMe: string;
|
|
11359
|
-
isSuggestFB:
|
|
11499
|
+
isSuggestFB: boolean;
|
|
11360
11500
|
idPostToSheet: string;
|
|
11361
11501
|
}
|
|
11362
11502
|
|