automation-lib 5.4.292 → 5.4.294

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
@@ -11123,6 +11123,8 @@ interface IInstagramReportInteractBlockUser extends IBaseModel, ITrackingTimeScr
11123
11123
  sheetUrl: string;
11124
11124
  sheetName: string;
11125
11125
  account: IInstagramAccountRaw | string;
11126
+ accountProxy: string | IProxy;
11127
+ accountVPN: string | IAccountVPN;
11126
11128
  listUserBlock: string[];
11127
11129
  listUserRestrict: string[];
11128
11130
  listUserHidden: string[];
@@ -11157,6 +11159,26 @@ interface IInstagramReportInteractBlockUserELS extends IBaseELS {
11157
11159
  type: string;
11158
11160
  status: ESheetToolStatusRun;
11159
11161
  };
11162
+ accountVPN: IBaseRefFieldELS & {
11163
+ email: string;
11164
+ password: string;
11165
+ code2FA: string;
11166
+ provider: string;
11167
+ country: string;
11168
+ type: ETypeAccountVPN;
11169
+ status: EStatusAccountVPN;
11170
+ };
11171
+ accountProxy: IBaseRefFieldELS & {
11172
+ ip: string;
11173
+ port: string;
11174
+ user: string;
11175
+ password: string;
11176
+ provider: string;
11177
+ city: string;
11178
+ country: string;
11179
+ status: EStatusProxyChecked;
11180
+ type: ETypeProxy;
11181
+ };
11160
11182
  listUserBlock: string[];
11161
11183
  listUserRestrict: string[];
11162
11184
  listUserHidden: string[];
@@ -11173,6 +11195,8 @@ interface IInstagramReportInteractBlockUserELS extends IBaseELS {
11173
11195
  interface IInstagramReportInteractFollow extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
11174
11196
  sheet: string | ISheetsTool;
11175
11197
  account: IInstagramAccountRaw | string;
11198
+ accountProxy: string | IProxy;
11199
+ accountVPN: string | IAccountVPN;
11176
11200
  listUsersFollow: Array<string>;
11177
11201
  follower: number;
11178
11202
  following: number;
@@ -11220,6 +11244,26 @@ interface IInstagramReportInteractFollowELS extends IBaseELS {
11220
11244
  type: string;
11221
11245
  status: ESheetToolStatusRun;
11222
11246
  };
11247
+ accountVPN: IBaseRefFieldELS & {
11248
+ email: string;
11249
+ password: string;
11250
+ code2FA: string;
11251
+ provider: string;
11252
+ country: string;
11253
+ type: ETypeAccountVPN;
11254
+ status: EStatusAccountVPN;
11255
+ };
11256
+ accountProxy: IBaseRefFieldELS & {
11257
+ ip: string;
11258
+ port: string;
11259
+ user: string;
11260
+ password: string;
11261
+ provider: string;
11262
+ city: string;
11263
+ country: string;
11264
+ status: EStatusProxyChecked;
11265
+ type: ETypeProxy;
11266
+ };
11223
11267
  listUsersFollow: Array<string>;
11224
11268
  follower: number;
11225
11269
  following: number;
@@ -11247,6 +11291,8 @@ interface IInstagramReportInteractFollowELS extends IBaseELS {
11247
11291
 
11248
11292
  interface IInstagramReportInteractReplyComment extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
11249
11293
  account: IInstagramAccountRaw | string;
11294
+ accountProxy: string | IProxy;
11295
+ accountVPN: string | IAccountVPN;
11250
11296
  sheet: string | ISheetsTool;
11251
11297
  content: string;
11252
11298
  userLink: string;
@@ -11284,6 +11330,26 @@ interface IInstagramReportInteractReplyCommentELS extends IBaseELS {
11284
11330
  type: string;
11285
11331
  status: ESheetToolStatusRun;
11286
11332
  };
11333
+ accountVPN: IBaseRefFieldELS & {
11334
+ email: string;
11335
+ password: string;
11336
+ code2FA: string;
11337
+ provider: string;
11338
+ country: string;
11339
+ type: ETypeAccountVPN;
11340
+ status: EStatusAccountVPN;
11341
+ };
11342
+ accountProxy: IBaseRefFieldELS & {
11343
+ ip: string;
11344
+ port: string;
11345
+ user: string;
11346
+ password: string;
11347
+ provider: string;
11348
+ city: string;
11349
+ country: string;
11350
+ status: EStatusProxyChecked;
11351
+ type: ETypeProxy;
11352
+ };
11287
11353
  content: string;
11288
11354
  userLink: string;
11289
11355
  linkPost: string;
@@ -11300,6 +11366,8 @@ interface IInstagramReportInteractReplyCommentELS extends IBaseELS {
11300
11366
 
11301
11367
  interface IInstagramReportInteractReplyMessage extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
11302
11368
  account: IInstagramAccountRaw | string;
11369
+ accountProxy: string | IProxy;
11370
+ accountVPN: string | IAccountVPN;
11303
11371
  sheet: string | ISheetsTool;
11304
11372
  receiverName: string;
11305
11373
  messageReply: string;
@@ -11335,6 +11403,26 @@ interface IInstagramReportInteractReplyMessageELS extends IBaseELS {
11335
11403
  type: string;
11336
11404
  status: ESheetToolStatusRun;
11337
11405
  };
11406
+ accountVPN: IBaseRefFieldELS & {
11407
+ email: string;
11408
+ password: string;
11409
+ code2FA: string;
11410
+ provider: string;
11411
+ country: string;
11412
+ type: ETypeAccountVPN;
11413
+ status: EStatusAccountVPN;
11414
+ };
11415
+ accountProxy: IBaseRefFieldELS & {
11416
+ ip: string;
11417
+ port: string;
11418
+ user: string;
11419
+ password: string;
11420
+ provider: string;
11421
+ city: string;
11422
+ country: string;
11423
+ status: EStatusProxyChecked;
11424
+ type: ETypeProxy;
11425
+ };
11338
11426
  receiverName: string;
11339
11427
  messageReply: string;
11340
11428
  status: EStatusTaskScript;
@@ -11349,6 +11437,8 @@ interface IInstagramReportInteractReplyMessageELS extends IBaseELS {
11349
11437
 
11350
11438
  interface IInstagramReportInteractUnFollow extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
11351
11439
  account: IInstagramAccountRaw | string;
11440
+ accountProxy: string | IProxy;
11441
+ accountVPN: string | IAccountVPN;
11352
11442
  sheet: string | ISheetsTool;
11353
11443
  listUsersUnFollow: Array<string>;
11354
11444
  follower: number;
@@ -11392,6 +11482,26 @@ interface IInstagramReportInteractUnFollowELS extends IBaseELS {
11392
11482
  type: string;
11393
11483
  status: ESheetToolStatusRun;
11394
11484
  };
11485
+ accountVPN: IBaseRefFieldELS & {
11486
+ email: string;
11487
+ password: string;
11488
+ code2FA: string;
11489
+ provider: string;
11490
+ country: string;
11491
+ type: ETypeAccountVPN;
11492
+ status: EStatusAccountVPN;
11493
+ };
11494
+ accountProxy: IBaseRefFieldELS & {
11495
+ ip: string;
11496
+ port: string;
11497
+ user: string;
11498
+ password: string;
11499
+ provider: string;
11500
+ city: string;
11501
+ country: string;
11502
+ status: EStatusProxyChecked;
11503
+ type: ETypeProxy;
11504
+ };
11395
11505
  listUsersUnFollow: Array<string>;
11396
11506
  follower: number;
11397
11507
  following: number;
@@ -11414,6 +11524,8 @@ interface IInstagramReportInteractUnFollowELS extends IBaseELS {
11414
11524
 
11415
11525
  interface IInstagramReportPostHighLight extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
11416
11526
  account: string | IInstagramAccountRaw;
11527
+ accountProxy: string | IProxy;
11528
+ accountVPN: string | IAccountVPN;
11417
11529
  sheet: string | ISheetsTool;
11418
11530
  rowId: string;
11419
11531
  sttAccount: string;
@@ -11456,6 +11568,26 @@ interface IInstagramReportPostHighLightELS extends IBaseELS {
11456
11568
  type: string;
11457
11569
  status: ESheetToolStatusRun;
11458
11570
  };
11571
+ accountVPN: IBaseRefFieldELS & {
11572
+ email: string;
11573
+ password: string;
11574
+ code2FA: string;
11575
+ provider: string;
11576
+ country: string;
11577
+ type: ETypeAccountVPN;
11578
+ status: EStatusAccountVPN;
11579
+ };
11580
+ accountProxy: IBaseRefFieldELS & {
11581
+ ip: string;
11582
+ port: string;
11583
+ user: string;
11584
+ password: string;
11585
+ provider: string;
11586
+ city: string;
11587
+ country: string;
11588
+ status: EStatusProxyChecked;
11589
+ type: ETypeProxy;
11590
+ };
11459
11591
  rowId: string;
11460
11592
  sttAccount: string;
11461
11593
  timeStart: Date;
@@ -11514,6 +11646,8 @@ interface IInstagramReportPostHighLightELS extends IBaseELS {
11514
11646
 
11515
11647
  interface IInstagramReportPostNew extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
11516
11648
  account: string | IInstagramAccountRaw;
11649
+ accountProxy: string | IProxy;
11650
+ accountVPN: string | IAccountVPN;
11517
11651
  sheet: string | ISheetsTool;
11518
11652
  rowId: string;
11519
11653
  sttAccount: string;
@@ -11573,6 +11707,26 @@ interface IInstagramReportPostNewELS extends IBaseELS {
11573
11707
  type: string;
11574
11708
  status: ESheetToolStatusRun;
11575
11709
  };
11710
+ accountVPN: IBaseRefFieldELS & {
11711
+ email: string;
11712
+ password: string;
11713
+ code2FA: string;
11714
+ provider: string;
11715
+ country: string;
11716
+ type: ETypeAccountVPN;
11717
+ status: EStatusAccountVPN;
11718
+ };
11719
+ accountProxy: IBaseRefFieldELS & {
11720
+ ip: string;
11721
+ port: string;
11722
+ user: string;
11723
+ password: string;
11724
+ provider: string;
11725
+ city: string;
11726
+ country: string;
11727
+ status: EStatusProxyChecked;
11728
+ type: ETypeProxy;
11729
+ };
11576
11730
  rowId: string;
11577
11731
  sttAccount: string;
11578
11732
  timeStart: Date;
@@ -11651,6 +11805,8 @@ interface IInstagramReportPostNewELS extends IBaseELS {
11651
11805
 
11652
11806
  interface IInstagramReportPostSquare extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
11653
11807
  account: string | IInstagramAccountRaw;
11808
+ accountProxy: string | IProxy;
11809
+ accountVPN: string | IAccountVPN;
11654
11810
  sheet: string | ISheetsTool;
11655
11811
  rowId: string;
11656
11812
  sttAccount: string;
@@ -11707,6 +11863,26 @@ interface IInstagramReportPostSquareELS extends IBaseELS {
11707
11863
  type: string;
11708
11864
  status: ESheetToolStatusRun;
11709
11865
  };
11866
+ accountVPN: IBaseRefFieldELS & {
11867
+ email: string;
11868
+ password: string;
11869
+ code2FA: string;
11870
+ provider: string;
11871
+ country: string;
11872
+ type: ETypeAccountVPN;
11873
+ status: EStatusAccountVPN;
11874
+ };
11875
+ accountProxy: IBaseRefFieldELS & {
11876
+ ip: string;
11877
+ port: string;
11878
+ user: string;
11879
+ password: string;
11880
+ provider: string;
11881
+ city: string;
11882
+ country: string;
11883
+ status: EStatusProxyChecked;
11884
+ type: ETypeProxy;
11885
+ };
11710
11886
  rowId: string;
11711
11887
  sttAccount: string;
11712
11888
  timeStart: Date;
@@ -11784,6 +11960,8 @@ interface IInstagramReportPostSquareELS extends IBaseELS {
11784
11960
 
11785
11961
  interface IInstagramReportPostReel extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
11786
11962
  account: string | IInstagramAccountRaw;
11963
+ accountProxy: string | IProxy;
11964
+ accountVPN: string | IAccountVPN;
11787
11965
  sheet: string | ISheetsTool;
11788
11966
  rowId: string;
11789
11967
  sttAccount: string;
@@ -11830,6 +12008,26 @@ interface IInstagramReportPostReelELS extends IBaseELS {
11830
12008
  type: string;
11831
12009
  status: ESheetToolStatusRun;
11832
12010
  };
12011
+ accountVPN: IBaseRefFieldELS & {
12012
+ email: string;
12013
+ password: string;
12014
+ code2FA: string;
12015
+ provider: string;
12016
+ country: string;
12017
+ type: ETypeAccountVPN;
12018
+ status: EStatusAccountVPN;
12019
+ };
12020
+ accountProxy: IBaseRefFieldELS & {
12021
+ ip: string;
12022
+ port: string;
12023
+ user: string;
12024
+ password: string;
12025
+ provider: string;
12026
+ city: string;
12027
+ country: string;
12028
+ status: EStatusProxyChecked;
12029
+ type: ETypeProxy;
12030
+ };
11833
12031
  rowId: string;
11834
12032
  sttAccount: string;
11835
12033
  timeStart: Date;
@@ -11896,6 +12094,8 @@ interface IInstagramReportPostReelELS extends IBaseELS {
11896
12094
 
11897
12095
  interface IInstagramReportPostStory extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
11898
12096
  account: string | IInstagramAccountRaw;
12097
+ accountProxy: string | IProxy;
12098
+ accountVPN: string | IAccountVPN;
11899
12099
  sheet: string | ISheetsTool;
11900
12100
  rowId: string;
11901
12101
  sttAccount: string;
@@ -11942,6 +12142,26 @@ interface IInstagramReportPostStoryELS extends IBaseELS {
11942
12142
  type: string;
11943
12143
  status: ESheetToolStatusRun;
11944
12144
  };
12145
+ accountVPN: IBaseRefFieldELS & {
12146
+ email: string;
12147
+ password: string;
12148
+ code2FA: string;
12149
+ provider: string;
12150
+ country: string;
12151
+ type: ETypeAccountVPN;
12152
+ status: EStatusAccountVPN;
12153
+ };
12154
+ accountProxy: IBaseRefFieldELS & {
12155
+ ip: string;
12156
+ port: string;
12157
+ user: string;
12158
+ password: string;
12159
+ provider: string;
12160
+ city: string;
12161
+ country: string;
12162
+ status: EStatusProxyChecked;
12163
+ type: ETypeProxy;
12164
+ };
11945
12165
  rowId: string;
11946
12166
  sttAccount: string;
11947
12167
  timeStart: Date;
package/dist/index.d.ts CHANGED
@@ -11123,6 +11123,8 @@ interface IInstagramReportInteractBlockUser extends IBaseModel, ITrackingTimeScr
11123
11123
  sheetUrl: string;
11124
11124
  sheetName: string;
11125
11125
  account: IInstagramAccountRaw | string;
11126
+ accountProxy: string | IProxy;
11127
+ accountVPN: string | IAccountVPN;
11126
11128
  listUserBlock: string[];
11127
11129
  listUserRestrict: string[];
11128
11130
  listUserHidden: string[];
@@ -11157,6 +11159,26 @@ interface IInstagramReportInteractBlockUserELS extends IBaseELS {
11157
11159
  type: string;
11158
11160
  status: ESheetToolStatusRun;
11159
11161
  };
11162
+ accountVPN: IBaseRefFieldELS & {
11163
+ email: string;
11164
+ password: string;
11165
+ code2FA: string;
11166
+ provider: string;
11167
+ country: string;
11168
+ type: ETypeAccountVPN;
11169
+ status: EStatusAccountVPN;
11170
+ };
11171
+ accountProxy: IBaseRefFieldELS & {
11172
+ ip: string;
11173
+ port: string;
11174
+ user: string;
11175
+ password: string;
11176
+ provider: string;
11177
+ city: string;
11178
+ country: string;
11179
+ status: EStatusProxyChecked;
11180
+ type: ETypeProxy;
11181
+ };
11160
11182
  listUserBlock: string[];
11161
11183
  listUserRestrict: string[];
11162
11184
  listUserHidden: string[];
@@ -11173,6 +11195,8 @@ interface IInstagramReportInteractBlockUserELS extends IBaseELS {
11173
11195
  interface IInstagramReportInteractFollow extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
11174
11196
  sheet: string | ISheetsTool;
11175
11197
  account: IInstagramAccountRaw | string;
11198
+ accountProxy: string | IProxy;
11199
+ accountVPN: string | IAccountVPN;
11176
11200
  listUsersFollow: Array<string>;
11177
11201
  follower: number;
11178
11202
  following: number;
@@ -11220,6 +11244,26 @@ interface IInstagramReportInteractFollowELS extends IBaseELS {
11220
11244
  type: string;
11221
11245
  status: ESheetToolStatusRun;
11222
11246
  };
11247
+ accountVPN: IBaseRefFieldELS & {
11248
+ email: string;
11249
+ password: string;
11250
+ code2FA: string;
11251
+ provider: string;
11252
+ country: string;
11253
+ type: ETypeAccountVPN;
11254
+ status: EStatusAccountVPN;
11255
+ };
11256
+ accountProxy: IBaseRefFieldELS & {
11257
+ ip: string;
11258
+ port: string;
11259
+ user: string;
11260
+ password: string;
11261
+ provider: string;
11262
+ city: string;
11263
+ country: string;
11264
+ status: EStatusProxyChecked;
11265
+ type: ETypeProxy;
11266
+ };
11223
11267
  listUsersFollow: Array<string>;
11224
11268
  follower: number;
11225
11269
  following: number;
@@ -11247,6 +11291,8 @@ interface IInstagramReportInteractFollowELS extends IBaseELS {
11247
11291
 
11248
11292
  interface IInstagramReportInteractReplyComment extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
11249
11293
  account: IInstagramAccountRaw | string;
11294
+ accountProxy: string | IProxy;
11295
+ accountVPN: string | IAccountVPN;
11250
11296
  sheet: string | ISheetsTool;
11251
11297
  content: string;
11252
11298
  userLink: string;
@@ -11284,6 +11330,26 @@ interface IInstagramReportInteractReplyCommentELS extends IBaseELS {
11284
11330
  type: string;
11285
11331
  status: ESheetToolStatusRun;
11286
11332
  };
11333
+ accountVPN: IBaseRefFieldELS & {
11334
+ email: string;
11335
+ password: string;
11336
+ code2FA: string;
11337
+ provider: string;
11338
+ country: string;
11339
+ type: ETypeAccountVPN;
11340
+ status: EStatusAccountVPN;
11341
+ };
11342
+ accountProxy: IBaseRefFieldELS & {
11343
+ ip: string;
11344
+ port: string;
11345
+ user: string;
11346
+ password: string;
11347
+ provider: string;
11348
+ city: string;
11349
+ country: string;
11350
+ status: EStatusProxyChecked;
11351
+ type: ETypeProxy;
11352
+ };
11287
11353
  content: string;
11288
11354
  userLink: string;
11289
11355
  linkPost: string;
@@ -11300,6 +11366,8 @@ interface IInstagramReportInteractReplyCommentELS extends IBaseELS {
11300
11366
 
11301
11367
  interface IInstagramReportInteractReplyMessage extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
11302
11368
  account: IInstagramAccountRaw | string;
11369
+ accountProxy: string | IProxy;
11370
+ accountVPN: string | IAccountVPN;
11303
11371
  sheet: string | ISheetsTool;
11304
11372
  receiverName: string;
11305
11373
  messageReply: string;
@@ -11335,6 +11403,26 @@ interface IInstagramReportInteractReplyMessageELS extends IBaseELS {
11335
11403
  type: string;
11336
11404
  status: ESheetToolStatusRun;
11337
11405
  };
11406
+ accountVPN: IBaseRefFieldELS & {
11407
+ email: string;
11408
+ password: string;
11409
+ code2FA: string;
11410
+ provider: string;
11411
+ country: string;
11412
+ type: ETypeAccountVPN;
11413
+ status: EStatusAccountVPN;
11414
+ };
11415
+ accountProxy: IBaseRefFieldELS & {
11416
+ ip: string;
11417
+ port: string;
11418
+ user: string;
11419
+ password: string;
11420
+ provider: string;
11421
+ city: string;
11422
+ country: string;
11423
+ status: EStatusProxyChecked;
11424
+ type: ETypeProxy;
11425
+ };
11338
11426
  receiverName: string;
11339
11427
  messageReply: string;
11340
11428
  status: EStatusTaskScript;
@@ -11349,6 +11437,8 @@ interface IInstagramReportInteractReplyMessageELS extends IBaseELS {
11349
11437
 
11350
11438
  interface IInstagramReportInteractUnFollow extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
11351
11439
  account: IInstagramAccountRaw | string;
11440
+ accountProxy: string | IProxy;
11441
+ accountVPN: string | IAccountVPN;
11352
11442
  sheet: string | ISheetsTool;
11353
11443
  listUsersUnFollow: Array<string>;
11354
11444
  follower: number;
@@ -11392,6 +11482,26 @@ interface IInstagramReportInteractUnFollowELS extends IBaseELS {
11392
11482
  type: string;
11393
11483
  status: ESheetToolStatusRun;
11394
11484
  };
11485
+ accountVPN: IBaseRefFieldELS & {
11486
+ email: string;
11487
+ password: string;
11488
+ code2FA: string;
11489
+ provider: string;
11490
+ country: string;
11491
+ type: ETypeAccountVPN;
11492
+ status: EStatusAccountVPN;
11493
+ };
11494
+ accountProxy: IBaseRefFieldELS & {
11495
+ ip: string;
11496
+ port: string;
11497
+ user: string;
11498
+ password: string;
11499
+ provider: string;
11500
+ city: string;
11501
+ country: string;
11502
+ status: EStatusProxyChecked;
11503
+ type: ETypeProxy;
11504
+ };
11395
11505
  listUsersUnFollow: Array<string>;
11396
11506
  follower: number;
11397
11507
  following: number;
@@ -11414,6 +11524,8 @@ interface IInstagramReportInteractUnFollowELS extends IBaseELS {
11414
11524
 
11415
11525
  interface IInstagramReportPostHighLight extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
11416
11526
  account: string | IInstagramAccountRaw;
11527
+ accountProxy: string | IProxy;
11528
+ accountVPN: string | IAccountVPN;
11417
11529
  sheet: string | ISheetsTool;
11418
11530
  rowId: string;
11419
11531
  sttAccount: string;
@@ -11456,6 +11568,26 @@ interface IInstagramReportPostHighLightELS extends IBaseELS {
11456
11568
  type: string;
11457
11569
  status: ESheetToolStatusRun;
11458
11570
  };
11571
+ accountVPN: IBaseRefFieldELS & {
11572
+ email: string;
11573
+ password: string;
11574
+ code2FA: string;
11575
+ provider: string;
11576
+ country: string;
11577
+ type: ETypeAccountVPN;
11578
+ status: EStatusAccountVPN;
11579
+ };
11580
+ accountProxy: IBaseRefFieldELS & {
11581
+ ip: string;
11582
+ port: string;
11583
+ user: string;
11584
+ password: string;
11585
+ provider: string;
11586
+ city: string;
11587
+ country: string;
11588
+ status: EStatusProxyChecked;
11589
+ type: ETypeProxy;
11590
+ };
11459
11591
  rowId: string;
11460
11592
  sttAccount: string;
11461
11593
  timeStart: Date;
@@ -11514,6 +11646,8 @@ interface IInstagramReportPostHighLightELS extends IBaseELS {
11514
11646
 
11515
11647
  interface IInstagramReportPostNew extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
11516
11648
  account: string | IInstagramAccountRaw;
11649
+ accountProxy: string | IProxy;
11650
+ accountVPN: string | IAccountVPN;
11517
11651
  sheet: string | ISheetsTool;
11518
11652
  rowId: string;
11519
11653
  sttAccount: string;
@@ -11573,6 +11707,26 @@ interface IInstagramReportPostNewELS extends IBaseELS {
11573
11707
  type: string;
11574
11708
  status: ESheetToolStatusRun;
11575
11709
  };
11710
+ accountVPN: IBaseRefFieldELS & {
11711
+ email: string;
11712
+ password: string;
11713
+ code2FA: string;
11714
+ provider: string;
11715
+ country: string;
11716
+ type: ETypeAccountVPN;
11717
+ status: EStatusAccountVPN;
11718
+ };
11719
+ accountProxy: IBaseRefFieldELS & {
11720
+ ip: string;
11721
+ port: string;
11722
+ user: string;
11723
+ password: string;
11724
+ provider: string;
11725
+ city: string;
11726
+ country: string;
11727
+ status: EStatusProxyChecked;
11728
+ type: ETypeProxy;
11729
+ };
11576
11730
  rowId: string;
11577
11731
  sttAccount: string;
11578
11732
  timeStart: Date;
@@ -11651,6 +11805,8 @@ interface IInstagramReportPostNewELS extends IBaseELS {
11651
11805
 
11652
11806
  interface IInstagramReportPostSquare extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
11653
11807
  account: string | IInstagramAccountRaw;
11808
+ accountProxy: string | IProxy;
11809
+ accountVPN: string | IAccountVPN;
11654
11810
  sheet: string | ISheetsTool;
11655
11811
  rowId: string;
11656
11812
  sttAccount: string;
@@ -11707,6 +11863,26 @@ interface IInstagramReportPostSquareELS extends IBaseELS {
11707
11863
  type: string;
11708
11864
  status: ESheetToolStatusRun;
11709
11865
  };
11866
+ accountVPN: IBaseRefFieldELS & {
11867
+ email: string;
11868
+ password: string;
11869
+ code2FA: string;
11870
+ provider: string;
11871
+ country: string;
11872
+ type: ETypeAccountVPN;
11873
+ status: EStatusAccountVPN;
11874
+ };
11875
+ accountProxy: IBaseRefFieldELS & {
11876
+ ip: string;
11877
+ port: string;
11878
+ user: string;
11879
+ password: string;
11880
+ provider: string;
11881
+ city: string;
11882
+ country: string;
11883
+ status: EStatusProxyChecked;
11884
+ type: ETypeProxy;
11885
+ };
11710
11886
  rowId: string;
11711
11887
  sttAccount: string;
11712
11888
  timeStart: Date;
@@ -11784,6 +11960,8 @@ interface IInstagramReportPostSquareELS extends IBaseELS {
11784
11960
 
11785
11961
  interface IInstagramReportPostReel extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
11786
11962
  account: string | IInstagramAccountRaw;
11963
+ accountProxy: string | IProxy;
11964
+ accountVPN: string | IAccountVPN;
11787
11965
  sheet: string | ISheetsTool;
11788
11966
  rowId: string;
11789
11967
  sttAccount: string;
@@ -11830,6 +12008,26 @@ interface IInstagramReportPostReelELS extends IBaseELS {
11830
12008
  type: string;
11831
12009
  status: ESheetToolStatusRun;
11832
12010
  };
12011
+ accountVPN: IBaseRefFieldELS & {
12012
+ email: string;
12013
+ password: string;
12014
+ code2FA: string;
12015
+ provider: string;
12016
+ country: string;
12017
+ type: ETypeAccountVPN;
12018
+ status: EStatusAccountVPN;
12019
+ };
12020
+ accountProxy: IBaseRefFieldELS & {
12021
+ ip: string;
12022
+ port: string;
12023
+ user: string;
12024
+ password: string;
12025
+ provider: string;
12026
+ city: string;
12027
+ country: string;
12028
+ status: EStatusProxyChecked;
12029
+ type: ETypeProxy;
12030
+ };
11833
12031
  rowId: string;
11834
12032
  sttAccount: string;
11835
12033
  timeStart: Date;
@@ -11896,6 +12094,8 @@ interface IInstagramReportPostReelELS extends IBaseELS {
11896
12094
 
11897
12095
  interface IInstagramReportPostStory extends IBaseModel, ITrackingTimeScript, ITrackingModel<IUser> {
11898
12096
  account: string | IInstagramAccountRaw;
12097
+ accountProxy: string | IProxy;
12098
+ accountVPN: string | IAccountVPN;
11899
12099
  sheet: string | ISheetsTool;
11900
12100
  rowId: string;
11901
12101
  sttAccount: string;
@@ -11942,6 +12142,26 @@ interface IInstagramReportPostStoryELS extends IBaseELS {
11942
12142
  type: string;
11943
12143
  status: ESheetToolStatusRun;
11944
12144
  };
12145
+ accountVPN: IBaseRefFieldELS & {
12146
+ email: string;
12147
+ password: string;
12148
+ code2FA: string;
12149
+ provider: string;
12150
+ country: string;
12151
+ type: ETypeAccountVPN;
12152
+ status: EStatusAccountVPN;
12153
+ };
12154
+ accountProxy: IBaseRefFieldELS & {
12155
+ ip: string;
12156
+ port: string;
12157
+ user: string;
12158
+ password: string;
12159
+ provider: string;
12160
+ city: string;
12161
+ country: string;
12162
+ status: EStatusProxyChecked;
12163
+ type: ETypeProxy;
12164
+ };
11945
12165
  rowId: string;
11946
12166
  sttAccount: string;
11947
12167
  timeStart: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "5.4.292",
3
+ "version": "5.4.294",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",