automation-lib 5.4.148 → 5.4.149

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 CHANGED
@@ -2882,22 +2882,29 @@ interface FindAccountSocialGroupPopupSocialDto {
2882
2882
  idea: string;
2883
2883
  niche: string;
2884
2884
  type: ETypeManagerWorkClassify;
2885
- username: string;
2886
- email: string;
2887
- status: string;
2888
2885
  pcName: string;
2889
- typeAppClone: string;
2890
- nameAppClone: string;
2891
- nameAppCloneSocial: string;
2892
- deviceName: string;
2893
- deviceOS: ETypeDeviceOS;
2894
- deviceModel: string;
2895
- departmentAssign: string;
2896
- leaderAssign: string;
2897
- memberAssign: string;
2898
- timeLastUsed: Date;
2899
- sheetUrl: string;
2900
- sheetName: string;
2886
+ deviceInfo: {
2887
+ id: string;
2888
+ deviceKey: string;
2889
+ deviceName: string;
2890
+ deviceOS: ETypeDeviceOS;
2891
+ deviceModel: string;
2892
+ };
2893
+ accountInfo: {
2894
+ id: string;
2895
+ accountID: string;
2896
+ username: string;
2897
+ fullname: string;
2898
+ email: string;
2899
+ numberFollower: number;
2900
+ numberFollowing: number;
2901
+ statusLogin: EStatusAccountSocialLogin;
2902
+ statusRun: EStatusAccountSocialRun;
2903
+ typeAppClone: string;
2904
+ nameAppClone: string;
2905
+ nameAppCloneSocial: string;
2906
+ folderNameImage: string;
2907
+ };
2901
2908
  createdAt: Date;
2902
2909
  updatedAt: Date;
2903
2910
  createdBy: string;
@@ -11747,10 +11754,10 @@ interface ITaskInstagramBlockUserELS extends IBaseELS {
11747
11754
  country: string;
11748
11755
  status: EStatusProxyChecked;
11749
11756
  }>;
11750
- sheet: {
11757
+ sheet: IBaseRefFieldELS & {
11751
11758
  url: string;
11752
- name: string;
11753
11759
  type: string;
11760
+ status: ESheetToolStatusRun;
11754
11761
  };
11755
11762
  minuteWaiting: number;
11756
11763
  isTimeUS: boolean;
@@ -11839,10 +11846,10 @@ interface ITaskInstagramChangeInfoELS extends IBaseELS {
11839
11846
  country: string;
11840
11847
  status: EStatusProxyChecked;
11841
11848
  }>;
11842
- sheet: {
11849
+ sheet: IBaseRefFieldELS & {
11843
11850
  url: string;
11844
- name: string;
11845
11851
  type: string;
11852
+ status: ESheetToolStatusRun;
11846
11853
  };
11847
11854
  minuteWaiting: number;
11848
11855
  isTimeUS: boolean;
@@ -12037,6 +12044,7 @@ interface ITaskInstagramFollowELS extends IBaseELS {
12037
12044
  sheet: IBaseRefFieldELS & {
12038
12045
  url: string;
12039
12046
  type: string;
12047
+ status: ESheetToolStatusRun;
12040
12048
  };
12041
12049
  minuteWaiting: number;
12042
12050
  isTimeUS: boolean;
@@ -12353,6 +12361,7 @@ interface ITaskInstagramPostELS extends IBaseELS {
12353
12361
  sheet: IBaseRefFieldELS & {
12354
12362
  url: string;
12355
12363
  type: string;
12364
+ status: ESheetToolStatusRun;
12356
12365
  };
12357
12366
  minuteWaiting: number;
12358
12367
  isTimeUS: boolean;
@@ -12470,6 +12479,7 @@ interface ITaskInstagramReplyCommentELS extends IBaseELS {
12470
12479
  sheet: IBaseRefFieldELS & {
12471
12480
  url: string;
12472
12481
  type: string;
12482
+ status: ESheetToolStatusRun;
12473
12483
  };
12474
12484
  minuteWaiting: number;
12475
12485
  isTimeUS: boolean;
@@ -12550,6 +12560,7 @@ interface ITaskInstagramReplyMessageELS extends IBaseELS {
12550
12560
  sheet: IBaseRefFieldELS & {
12551
12561
  url: string;
12552
12562
  type: string;
12563
+ status: ESheetToolStatusRun;
12553
12564
  };
12554
12565
  minuteWaiting: number;
12555
12566
  isTimeUS: boolean;
@@ -13442,6 +13453,7 @@ interface ITaskThreadsPostELS extends IBaseELS {
13442
13453
  sheet: IBaseRefFieldELS & {
13443
13454
  url: string;
13444
13455
  type: string;
13456
+ status: ESheetToolStatusRun;
13445
13457
  };
13446
13458
  minuteWaiting: number;
13447
13459
  isTimeUS: boolean;
@@ -13529,6 +13541,7 @@ interface ITaskThreadsFollowELS extends IBaseELS {
13529
13541
  sheet: IBaseRefFieldELS & {
13530
13542
  url: string;
13531
13543
  type: string;
13544
+ status: ESheetToolStatusRun;
13532
13545
  };
13533
13546
  minuteWaiting: number;
13534
13547
  isTimeUS: boolean;
@@ -13603,6 +13616,7 @@ interface ITaskThreadsReplyCommentELS extends IBaseELS {
13603
13616
  sheet: IBaseRefFieldELS & {
13604
13617
  url: string;
13605
13618
  type: string;
13619
+ status: ESheetToolStatusRun;
13606
13620
  };
13607
13621
  minuteWaiting: number;
13608
13622
  isTimeUS: boolean;
@@ -13682,6 +13696,7 @@ interface ITaskThreadsReplyMessageELS extends IBaseELS {
13682
13696
  sheet: IBaseRefFieldELS & {
13683
13697
  url: string;
13684
13698
  type: string;
13699
+ status: ESheetToolStatusRun;
13685
13700
  };
13686
13701
  minuteWaiting: number;
13687
13702
  isTimeUS: boolean;
package/dist/index.d.ts CHANGED
@@ -2882,22 +2882,29 @@ interface FindAccountSocialGroupPopupSocialDto {
2882
2882
  idea: string;
2883
2883
  niche: string;
2884
2884
  type: ETypeManagerWorkClassify;
2885
- username: string;
2886
- email: string;
2887
- status: string;
2888
2885
  pcName: string;
2889
- typeAppClone: string;
2890
- nameAppClone: string;
2891
- nameAppCloneSocial: string;
2892
- deviceName: string;
2893
- deviceOS: ETypeDeviceOS;
2894
- deviceModel: string;
2895
- departmentAssign: string;
2896
- leaderAssign: string;
2897
- memberAssign: string;
2898
- timeLastUsed: Date;
2899
- sheetUrl: string;
2900
- sheetName: string;
2886
+ deviceInfo: {
2887
+ id: string;
2888
+ deviceKey: string;
2889
+ deviceName: string;
2890
+ deviceOS: ETypeDeviceOS;
2891
+ deviceModel: string;
2892
+ };
2893
+ accountInfo: {
2894
+ id: string;
2895
+ accountID: string;
2896
+ username: string;
2897
+ fullname: string;
2898
+ email: string;
2899
+ numberFollower: number;
2900
+ numberFollowing: number;
2901
+ statusLogin: EStatusAccountSocialLogin;
2902
+ statusRun: EStatusAccountSocialRun;
2903
+ typeAppClone: string;
2904
+ nameAppClone: string;
2905
+ nameAppCloneSocial: string;
2906
+ folderNameImage: string;
2907
+ };
2901
2908
  createdAt: Date;
2902
2909
  updatedAt: Date;
2903
2910
  createdBy: string;
@@ -11747,10 +11754,10 @@ interface ITaskInstagramBlockUserELS extends IBaseELS {
11747
11754
  country: string;
11748
11755
  status: EStatusProxyChecked;
11749
11756
  }>;
11750
- sheet: {
11757
+ sheet: IBaseRefFieldELS & {
11751
11758
  url: string;
11752
- name: string;
11753
11759
  type: string;
11760
+ status: ESheetToolStatusRun;
11754
11761
  };
11755
11762
  minuteWaiting: number;
11756
11763
  isTimeUS: boolean;
@@ -11839,10 +11846,10 @@ interface ITaskInstagramChangeInfoELS extends IBaseELS {
11839
11846
  country: string;
11840
11847
  status: EStatusProxyChecked;
11841
11848
  }>;
11842
- sheet: {
11849
+ sheet: IBaseRefFieldELS & {
11843
11850
  url: string;
11844
- name: string;
11845
11851
  type: string;
11852
+ status: ESheetToolStatusRun;
11846
11853
  };
11847
11854
  minuteWaiting: number;
11848
11855
  isTimeUS: boolean;
@@ -12037,6 +12044,7 @@ interface ITaskInstagramFollowELS extends IBaseELS {
12037
12044
  sheet: IBaseRefFieldELS & {
12038
12045
  url: string;
12039
12046
  type: string;
12047
+ status: ESheetToolStatusRun;
12040
12048
  };
12041
12049
  minuteWaiting: number;
12042
12050
  isTimeUS: boolean;
@@ -12353,6 +12361,7 @@ interface ITaskInstagramPostELS extends IBaseELS {
12353
12361
  sheet: IBaseRefFieldELS & {
12354
12362
  url: string;
12355
12363
  type: string;
12364
+ status: ESheetToolStatusRun;
12356
12365
  };
12357
12366
  minuteWaiting: number;
12358
12367
  isTimeUS: boolean;
@@ -12470,6 +12479,7 @@ interface ITaskInstagramReplyCommentELS extends IBaseELS {
12470
12479
  sheet: IBaseRefFieldELS & {
12471
12480
  url: string;
12472
12481
  type: string;
12482
+ status: ESheetToolStatusRun;
12473
12483
  };
12474
12484
  minuteWaiting: number;
12475
12485
  isTimeUS: boolean;
@@ -12550,6 +12560,7 @@ interface ITaskInstagramReplyMessageELS extends IBaseELS {
12550
12560
  sheet: IBaseRefFieldELS & {
12551
12561
  url: string;
12552
12562
  type: string;
12563
+ status: ESheetToolStatusRun;
12553
12564
  };
12554
12565
  minuteWaiting: number;
12555
12566
  isTimeUS: boolean;
@@ -13442,6 +13453,7 @@ interface ITaskThreadsPostELS extends IBaseELS {
13442
13453
  sheet: IBaseRefFieldELS & {
13443
13454
  url: string;
13444
13455
  type: string;
13456
+ status: ESheetToolStatusRun;
13445
13457
  };
13446
13458
  minuteWaiting: number;
13447
13459
  isTimeUS: boolean;
@@ -13529,6 +13541,7 @@ interface ITaskThreadsFollowELS extends IBaseELS {
13529
13541
  sheet: IBaseRefFieldELS & {
13530
13542
  url: string;
13531
13543
  type: string;
13544
+ status: ESheetToolStatusRun;
13532
13545
  };
13533
13546
  minuteWaiting: number;
13534
13547
  isTimeUS: boolean;
@@ -13603,6 +13616,7 @@ interface ITaskThreadsReplyCommentELS extends IBaseELS {
13603
13616
  sheet: IBaseRefFieldELS & {
13604
13617
  url: string;
13605
13618
  type: string;
13619
+ status: ESheetToolStatusRun;
13606
13620
  };
13607
13621
  minuteWaiting: number;
13608
13622
  isTimeUS: boolean;
@@ -13682,6 +13696,7 @@ interface ITaskThreadsReplyMessageELS extends IBaseELS {
13682
13696
  sheet: IBaseRefFieldELS & {
13683
13697
  url: string;
13684
13698
  type: string;
13699
+ status: ESheetToolStatusRun;
13685
13700
  };
13686
13701
  minuteWaiting: number;
13687
13702
  isTimeUS: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "5.4.148",
3
+ "version": "5.4.149",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",