automation-lib 5.1.68 → 5.1.70
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 +72 -4
- package/dist/index.d.ts +72 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -5262,21 +5262,93 @@ interface FindOverviewAccountCHPlayICloudDto {
|
|
5262
5262
|
}
|
5263
5263
|
|
5264
5264
|
interface FindThreadsHistoryGroupDto extends IFindBaseDto, IThreadsHistoryGroup {
|
5265
|
+
accountID: string;
|
5266
|
+
accountUsername: string;
|
5267
|
+
accountFullname: string;
|
5268
|
+
accountDeviceType: string;
|
5269
|
+
accountDeviceName: string;
|
5270
|
+
idea: string;
|
5271
|
+
niche: string;
|
5272
|
+
type: ETypeManagerWorkClassify;
|
5273
|
+
pc: string;
|
5274
|
+
deviceKey: string;
|
5275
|
+
deviceModel: string;
|
5276
|
+
deviceName: string;
|
5277
|
+
deviceOS: ETypeDeviceOS;
|
5278
|
+
group: string;
|
5279
|
+
email: string;
|
5280
|
+
emailPassword: string;
|
5281
|
+
email2FA: string;
|
5282
|
+
emailRecover: string;
|
5265
5283
|
}
|
5266
5284
|
interface FilterThreadsHistoryGroupDto extends IFilterBaseDto, Omit<IThreadsHistoryGroup, TOmitFilterDto> {
|
5267
5285
|
}
|
5268
5286
|
|
5269
5287
|
interface FindThreadsHistoryAutoSyncDto extends IFindBaseDto, IThreadsHistoryAutoSync {
|
5288
|
+
accountID: string;
|
5289
|
+
accountUsername: string;
|
5290
|
+
accountFullname: string;
|
5291
|
+
accountDeviceType: string;
|
5292
|
+
accountDeviceName: string;
|
5293
|
+
idea: string;
|
5294
|
+
niche: string;
|
5295
|
+
type: ETypeManagerWorkClassify;
|
5296
|
+
pc: string;
|
5297
|
+
deviceKey: string;
|
5298
|
+
deviceModel: string;
|
5299
|
+
deviceName: string;
|
5300
|
+
deviceOS: ETypeDeviceOS;
|
5301
|
+
group: string;
|
5302
|
+
email: string;
|
5303
|
+
emailPassword: string;
|
5304
|
+
email2FA: string;
|
5305
|
+
emailRecover: string;
|
5270
5306
|
}
|
5271
5307
|
interface FilterThreadsHistoryAutoSyncDto extends IFilterBaseDto, Omit<IThreadsHistoryAutoSync, TOmitFilterDto> {
|
5272
5308
|
}
|
5273
5309
|
|
5274
5310
|
interface FindThreadsHistoryCreateDto extends IFindBaseDto, IThreadsHistoryCreate {
|
5311
|
+
accountID: string;
|
5312
|
+
accountUsername: string;
|
5313
|
+
accountFullname: string;
|
5314
|
+
accountDeviceType: string;
|
5315
|
+
accountDeviceName: string;
|
5316
|
+
idea: string;
|
5317
|
+
niche: string;
|
5318
|
+
type: ETypeManagerWorkClassify;
|
5319
|
+
pc: string;
|
5320
|
+
deviceKey: string;
|
5321
|
+
deviceModel: string;
|
5322
|
+
deviceName: string;
|
5323
|
+
deviceOS: ETypeDeviceOS;
|
5324
|
+
group: string;
|
5325
|
+
email: string;
|
5326
|
+
emailPassword: string;
|
5327
|
+
email2FA: string;
|
5328
|
+
emailRecover: string;
|
5275
5329
|
}
|
5276
5330
|
interface FilterThreadsHistoryCreateDto extends IFilterBaseDto, Omit<IThreadsHistoryCreate, TOmitFilterDto> {
|
5277
5331
|
}
|
5278
5332
|
|
5279
5333
|
interface FindThreadsHistoryChangeDto extends IFindBaseDto, IThreadsHistoryChange {
|
5334
|
+
accountID: string;
|
5335
|
+
accountUsername: string;
|
5336
|
+
accountFullname: string;
|
5337
|
+
accountDeviceType: string;
|
5338
|
+
accountDeviceName: string;
|
5339
|
+
idea: string;
|
5340
|
+
niche: string;
|
5341
|
+
type: ETypeManagerWorkClassify;
|
5342
|
+
pc: string;
|
5343
|
+
deviceKey: string;
|
5344
|
+
deviceModel: string;
|
5345
|
+
deviceName: string;
|
5346
|
+
deviceOS: ETypeDeviceOS;
|
5347
|
+
group: string;
|
5348
|
+
email: string;
|
5349
|
+
emailPassword: string;
|
5350
|
+
email2FA: string;
|
5351
|
+
emailRecover: string;
|
5280
5352
|
}
|
5281
5353
|
interface FilterThreadsHistoryChangeDto extends IFilterBaseDto, Omit<IThreadsHistoryChange, TOmitFilterDto> {
|
5282
5354
|
}
|
@@ -5591,7 +5663,6 @@ interface FindInstagramHistoryGroupDto extends IFindBaseDto, IInstagramHistoryGr
|
|
5591
5663
|
accountID: string;
|
5592
5664
|
accountUsername: string;
|
5593
5665
|
accountFullname: string;
|
5594
|
-
accountEmail: string;
|
5595
5666
|
accountDeviceType: string;
|
5596
5667
|
accountDeviceName: string;
|
5597
5668
|
idea: string;
|
@@ -5615,7 +5686,6 @@ interface FindInstagramHistoryAutoSyncDto extends IFindBaseDto, IInstagramHistor
|
|
5615
5686
|
accountID: string;
|
5616
5687
|
accountUsername: string;
|
5617
5688
|
accountFullname: string;
|
5618
|
-
accountEmail: string;
|
5619
5689
|
accountDeviceType: string;
|
5620
5690
|
accountDeviceName: string;
|
5621
5691
|
idea: string;
|
@@ -5639,7 +5709,6 @@ interface FindInstagramHistoryCreateDto extends IFindBaseDto, IInstagramHistoryC
|
|
5639
5709
|
accountID: string;
|
5640
5710
|
accountUsername: string;
|
5641
5711
|
accountFullname: string;
|
5642
|
-
accountEmail: string;
|
5643
5712
|
accountDeviceType: string;
|
5644
5713
|
accountDeviceName: string;
|
5645
5714
|
idea: string;
|
@@ -5663,7 +5732,6 @@ interface FindInstagramHistoryChangeDto extends IFindBaseDto, IInstagramHistoryC
|
|
5663
5732
|
accountID: string;
|
5664
5733
|
accountUsername: string;
|
5665
5734
|
accountFullname: string;
|
5666
|
-
accountEmail: string;
|
5667
5735
|
accountDeviceType: string;
|
5668
5736
|
accountDeviceName: string;
|
5669
5737
|
idea: string;
|
package/dist/index.d.ts
CHANGED
@@ -5262,21 +5262,93 @@ interface FindOverviewAccountCHPlayICloudDto {
|
|
5262
5262
|
}
|
5263
5263
|
|
5264
5264
|
interface FindThreadsHistoryGroupDto extends IFindBaseDto, IThreadsHistoryGroup {
|
5265
|
+
accountID: string;
|
5266
|
+
accountUsername: string;
|
5267
|
+
accountFullname: string;
|
5268
|
+
accountDeviceType: string;
|
5269
|
+
accountDeviceName: string;
|
5270
|
+
idea: string;
|
5271
|
+
niche: string;
|
5272
|
+
type: ETypeManagerWorkClassify;
|
5273
|
+
pc: string;
|
5274
|
+
deviceKey: string;
|
5275
|
+
deviceModel: string;
|
5276
|
+
deviceName: string;
|
5277
|
+
deviceOS: ETypeDeviceOS;
|
5278
|
+
group: string;
|
5279
|
+
email: string;
|
5280
|
+
emailPassword: string;
|
5281
|
+
email2FA: string;
|
5282
|
+
emailRecover: string;
|
5265
5283
|
}
|
5266
5284
|
interface FilterThreadsHistoryGroupDto extends IFilterBaseDto, Omit<IThreadsHistoryGroup, TOmitFilterDto> {
|
5267
5285
|
}
|
5268
5286
|
|
5269
5287
|
interface FindThreadsHistoryAutoSyncDto extends IFindBaseDto, IThreadsHistoryAutoSync {
|
5288
|
+
accountID: string;
|
5289
|
+
accountUsername: string;
|
5290
|
+
accountFullname: string;
|
5291
|
+
accountDeviceType: string;
|
5292
|
+
accountDeviceName: string;
|
5293
|
+
idea: string;
|
5294
|
+
niche: string;
|
5295
|
+
type: ETypeManagerWorkClassify;
|
5296
|
+
pc: string;
|
5297
|
+
deviceKey: string;
|
5298
|
+
deviceModel: string;
|
5299
|
+
deviceName: string;
|
5300
|
+
deviceOS: ETypeDeviceOS;
|
5301
|
+
group: string;
|
5302
|
+
email: string;
|
5303
|
+
emailPassword: string;
|
5304
|
+
email2FA: string;
|
5305
|
+
emailRecover: string;
|
5270
5306
|
}
|
5271
5307
|
interface FilterThreadsHistoryAutoSyncDto extends IFilterBaseDto, Omit<IThreadsHistoryAutoSync, TOmitFilterDto> {
|
5272
5308
|
}
|
5273
5309
|
|
5274
5310
|
interface FindThreadsHistoryCreateDto extends IFindBaseDto, IThreadsHistoryCreate {
|
5311
|
+
accountID: string;
|
5312
|
+
accountUsername: string;
|
5313
|
+
accountFullname: string;
|
5314
|
+
accountDeviceType: string;
|
5315
|
+
accountDeviceName: string;
|
5316
|
+
idea: string;
|
5317
|
+
niche: string;
|
5318
|
+
type: ETypeManagerWorkClassify;
|
5319
|
+
pc: string;
|
5320
|
+
deviceKey: string;
|
5321
|
+
deviceModel: string;
|
5322
|
+
deviceName: string;
|
5323
|
+
deviceOS: ETypeDeviceOS;
|
5324
|
+
group: string;
|
5325
|
+
email: string;
|
5326
|
+
emailPassword: string;
|
5327
|
+
email2FA: string;
|
5328
|
+
emailRecover: string;
|
5275
5329
|
}
|
5276
5330
|
interface FilterThreadsHistoryCreateDto extends IFilterBaseDto, Omit<IThreadsHistoryCreate, TOmitFilterDto> {
|
5277
5331
|
}
|
5278
5332
|
|
5279
5333
|
interface FindThreadsHistoryChangeDto extends IFindBaseDto, IThreadsHistoryChange {
|
5334
|
+
accountID: string;
|
5335
|
+
accountUsername: string;
|
5336
|
+
accountFullname: string;
|
5337
|
+
accountDeviceType: string;
|
5338
|
+
accountDeviceName: string;
|
5339
|
+
idea: string;
|
5340
|
+
niche: string;
|
5341
|
+
type: ETypeManagerWorkClassify;
|
5342
|
+
pc: string;
|
5343
|
+
deviceKey: string;
|
5344
|
+
deviceModel: string;
|
5345
|
+
deviceName: string;
|
5346
|
+
deviceOS: ETypeDeviceOS;
|
5347
|
+
group: string;
|
5348
|
+
email: string;
|
5349
|
+
emailPassword: string;
|
5350
|
+
email2FA: string;
|
5351
|
+
emailRecover: string;
|
5280
5352
|
}
|
5281
5353
|
interface FilterThreadsHistoryChangeDto extends IFilterBaseDto, Omit<IThreadsHistoryChange, TOmitFilterDto> {
|
5282
5354
|
}
|
@@ -5591,7 +5663,6 @@ interface FindInstagramHistoryGroupDto extends IFindBaseDto, IInstagramHistoryGr
|
|
5591
5663
|
accountID: string;
|
5592
5664
|
accountUsername: string;
|
5593
5665
|
accountFullname: string;
|
5594
|
-
accountEmail: string;
|
5595
5666
|
accountDeviceType: string;
|
5596
5667
|
accountDeviceName: string;
|
5597
5668
|
idea: string;
|
@@ -5615,7 +5686,6 @@ interface FindInstagramHistoryAutoSyncDto extends IFindBaseDto, IInstagramHistor
|
|
5615
5686
|
accountID: string;
|
5616
5687
|
accountUsername: string;
|
5617
5688
|
accountFullname: string;
|
5618
|
-
accountEmail: string;
|
5619
5689
|
accountDeviceType: string;
|
5620
5690
|
accountDeviceName: string;
|
5621
5691
|
idea: string;
|
@@ -5639,7 +5709,6 @@ interface FindInstagramHistoryCreateDto extends IFindBaseDto, IInstagramHistoryC
|
|
5639
5709
|
accountID: string;
|
5640
5710
|
accountUsername: string;
|
5641
5711
|
accountFullname: string;
|
5642
|
-
accountEmail: string;
|
5643
5712
|
accountDeviceType: string;
|
5644
5713
|
accountDeviceName: string;
|
5645
5714
|
idea: string;
|
@@ -5663,7 +5732,6 @@ interface FindInstagramHistoryChangeDto extends IFindBaseDto, IInstagramHistoryC
|
|
5663
5732
|
accountID: string;
|
5664
5733
|
accountUsername: string;
|
5665
5734
|
accountFullname: string;
|
5666
|
-
accountEmail: string;
|
5667
5735
|
accountDeviceType: string;
|
5668
5736
|
accountDeviceName: string;
|
5669
5737
|
idea: string;
|