automation-lib 5.1.68 → 5.1.69
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 +76 -0
- package/dist/index.d.ts +76 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -5262,21 +5262,97 @@ interface FindOverviewAccountCHPlayICloudDto {
|
|
5262
5262
|
}
|
5263
5263
|
|
5264
5264
|
interface FindThreadsHistoryGroupDto extends IFindBaseDto, IThreadsHistoryGroup {
|
5265
|
+
accountID: string;
|
5266
|
+
accountUsername: string;
|
5267
|
+
accountFullname: string;
|
5268
|
+
accountEmail: string;
|
5269
|
+
accountDeviceType: string;
|
5270
|
+
accountDeviceName: string;
|
5271
|
+
idea: string;
|
5272
|
+
niche: string;
|
5273
|
+
type: ETypeManagerWorkClassify;
|
5274
|
+
pc: string;
|
5275
|
+
deviceKey: string;
|
5276
|
+
deviceModel: string;
|
5277
|
+
deviceName: string;
|
5278
|
+
deviceOS: ETypeDeviceOS;
|
5279
|
+
group: string;
|
5280
|
+
email: string;
|
5281
|
+
emailPassword: string;
|
5282
|
+
email2FA: string;
|
5283
|
+
emailRecover: string;
|
5265
5284
|
}
|
5266
5285
|
interface FilterThreadsHistoryGroupDto extends IFilterBaseDto, Omit<IThreadsHistoryGroup, TOmitFilterDto> {
|
5267
5286
|
}
|
5268
5287
|
|
5269
5288
|
interface FindThreadsHistoryAutoSyncDto extends IFindBaseDto, IThreadsHistoryAutoSync {
|
5289
|
+
accountID: string;
|
5290
|
+
accountUsername: string;
|
5291
|
+
accountFullname: string;
|
5292
|
+
accountEmail: string;
|
5293
|
+
accountDeviceType: string;
|
5294
|
+
accountDeviceName: string;
|
5295
|
+
idea: string;
|
5296
|
+
niche: string;
|
5297
|
+
type: ETypeManagerWorkClassify;
|
5298
|
+
pc: string;
|
5299
|
+
deviceKey: string;
|
5300
|
+
deviceModel: string;
|
5301
|
+
deviceName: string;
|
5302
|
+
deviceOS: ETypeDeviceOS;
|
5303
|
+
group: string;
|
5304
|
+
email: string;
|
5305
|
+
emailPassword: string;
|
5306
|
+
email2FA: string;
|
5307
|
+
emailRecover: string;
|
5270
5308
|
}
|
5271
5309
|
interface FilterThreadsHistoryAutoSyncDto extends IFilterBaseDto, Omit<IThreadsHistoryAutoSync, TOmitFilterDto> {
|
5272
5310
|
}
|
5273
5311
|
|
5274
5312
|
interface FindThreadsHistoryCreateDto extends IFindBaseDto, IThreadsHistoryCreate {
|
5313
|
+
accountID: string;
|
5314
|
+
accountUsername: string;
|
5315
|
+
accountFullname: string;
|
5316
|
+
accountEmail: string;
|
5317
|
+
accountDeviceType: string;
|
5318
|
+
accountDeviceName: string;
|
5319
|
+
idea: string;
|
5320
|
+
niche: string;
|
5321
|
+
type: ETypeManagerWorkClassify;
|
5322
|
+
pc: string;
|
5323
|
+
deviceKey: string;
|
5324
|
+
deviceModel: string;
|
5325
|
+
deviceName: string;
|
5326
|
+
deviceOS: ETypeDeviceOS;
|
5327
|
+
group: string;
|
5328
|
+
email: string;
|
5329
|
+
emailPassword: string;
|
5330
|
+
email2FA: string;
|
5331
|
+
emailRecover: string;
|
5275
5332
|
}
|
5276
5333
|
interface FilterThreadsHistoryCreateDto extends IFilterBaseDto, Omit<IThreadsHistoryCreate, TOmitFilterDto> {
|
5277
5334
|
}
|
5278
5335
|
|
5279
5336
|
interface FindThreadsHistoryChangeDto extends IFindBaseDto, IThreadsHistoryChange {
|
5337
|
+
accountID: string;
|
5338
|
+
accountUsername: string;
|
5339
|
+
accountFullname: string;
|
5340
|
+
accountEmail: string;
|
5341
|
+
accountDeviceType: string;
|
5342
|
+
accountDeviceName: string;
|
5343
|
+
idea: string;
|
5344
|
+
niche: string;
|
5345
|
+
type: ETypeManagerWorkClassify;
|
5346
|
+
pc: string;
|
5347
|
+
deviceKey: string;
|
5348
|
+
deviceModel: string;
|
5349
|
+
deviceName: string;
|
5350
|
+
deviceOS: ETypeDeviceOS;
|
5351
|
+
group: string;
|
5352
|
+
email: string;
|
5353
|
+
emailPassword: string;
|
5354
|
+
email2FA: string;
|
5355
|
+
emailRecover: string;
|
5280
5356
|
}
|
5281
5357
|
interface FilterThreadsHistoryChangeDto extends IFilterBaseDto, Omit<IThreadsHistoryChange, TOmitFilterDto> {
|
5282
5358
|
}
|
package/dist/index.d.ts
CHANGED
@@ -5262,21 +5262,97 @@ interface FindOverviewAccountCHPlayICloudDto {
|
|
5262
5262
|
}
|
5263
5263
|
|
5264
5264
|
interface FindThreadsHistoryGroupDto extends IFindBaseDto, IThreadsHistoryGroup {
|
5265
|
+
accountID: string;
|
5266
|
+
accountUsername: string;
|
5267
|
+
accountFullname: string;
|
5268
|
+
accountEmail: string;
|
5269
|
+
accountDeviceType: string;
|
5270
|
+
accountDeviceName: string;
|
5271
|
+
idea: string;
|
5272
|
+
niche: string;
|
5273
|
+
type: ETypeManagerWorkClassify;
|
5274
|
+
pc: string;
|
5275
|
+
deviceKey: string;
|
5276
|
+
deviceModel: string;
|
5277
|
+
deviceName: string;
|
5278
|
+
deviceOS: ETypeDeviceOS;
|
5279
|
+
group: string;
|
5280
|
+
email: string;
|
5281
|
+
emailPassword: string;
|
5282
|
+
email2FA: string;
|
5283
|
+
emailRecover: string;
|
5265
5284
|
}
|
5266
5285
|
interface FilterThreadsHistoryGroupDto extends IFilterBaseDto, Omit<IThreadsHistoryGroup, TOmitFilterDto> {
|
5267
5286
|
}
|
5268
5287
|
|
5269
5288
|
interface FindThreadsHistoryAutoSyncDto extends IFindBaseDto, IThreadsHistoryAutoSync {
|
5289
|
+
accountID: string;
|
5290
|
+
accountUsername: string;
|
5291
|
+
accountFullname: string;
|
5292
|
+
accountEmail: string;
|
5293
|
+
accountDeviceType: string;
|
5294
|
+
accountDeviceName: string;
|
5295
|
+
idea: string;
|
5296
|
+
niche: string;
|
5297
|
+
type: ETypeManagerWorkClassify;
|
5298
|
+
pc: string;
|
5299
|
+
deviceKey: string;
|
5300
|
+
deviceModel: string;
|
5301
|
+
deviceName: string;
|
5302
|
+
deviceOS: ETypeDeviceOS;
|
5303
|
+
group: string;
|
5304
|
+
email: string;
|
5305
|
+
emailPassword: string;
|
5306
|
+
email2FA: string;
|
5307
|
+
emailRecover: string;
|
5270
5308
|
}
|
5271
5309
|
interface FilterThreadsHistoryAutoSyncDto extends IFilterBaseDto, Omit<IThreadsHistoryAutoSync, TOmitFilterDto> {
|
5272
5310
|
}
|
5273
5311
|
|
5274
5312
|
interface FindThreadsHistoryCreateDto extends IFindBaseDto, IThreadsHistoryCreate {
|
5313
|
+
accountID: string;
|
5314
|
+
accountUsername: string;
|
5315
|
+
accountFullname: string;
|
5316
|
+
accountEmail: string;
|
5317
|
+
accountDeviceType: string;
|
5318
|
+
accountDeviceName: string;
|
5319
|
+
idea: string;
|
5320
|
+
niche: string;
|
5321
|
+
type: ETypeManagerWorkClassify;
|
5322
|
+
pc: string;
|
5323
|
+
deviceKey: string;
|
5324
|
+
deviceModel: string;
|
5325
|
+
deviceName: string;
|
5326
|
+
deviceOS: ETypeDeviceOS;
|
5327
|
+
group: string;
|
5328
|
+
email: string;
|
5329
|
+
emailPassword: string;
|
5330
|
+
email2FA: string;
|
5331
|
+
emailRecover: string;
|
5275
5332
|
}
|
5276
5333
|
interface FilterThreadsHistoryCreateDto extends IFilterBaseDto, Omit<IThreadsHistoryCreate, TOmitFilterDto> {
|
5277
5334
|
}
|
5278
5335
|
|
5279
5336
|
interface FindThreadsHistoryChangeDto extends IFindBaseDto, IThreadsHistoryChange {
|
5337
|
+
accountID: string;
|
5338
|
+
accountUsername: string;
|
5339
|
+
accountFullname: string;
|
5340
|
+
accountEmail: string;
|
5341
|
+
accountDeviceType: string;
|
5342
|
+
accountDeviceName: string;
|
5343
|
+
idea: string;
|
5344
|
+
niche: string;
|
5345
|
+
type: ETypeManagerWorkClassify;
|
5346
|
+
pc: string;
|
5347
|
+
deviceKey: string;
|
5348
|
+
deviceModel: string;
|
5349
|
+
deviceName: string;
|
5350
|
+
deviceOS: ETypeDeviceOS;
|
5351
|
+
group: string;
|
5352
|
+
email: string;
|
5353
|
+
emailPassword: string;
|
5354
|
+
email2FA: string;
|
5355
|
+
emailRecover: string;
|
5280
5356
|
}
|
5281
5357
|
interface FilterThreadsHistoryChangeDto extends IFilterBaseDto, Omit<IThreadsHistoryChange, TOmitFilterDto> {
|
5282
5358
|
}
|