automation-lib 5.0.166 → 5.0.168
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 +194 -50
- package/dist/index.d.ts +194 -50
- package/dist/index.js +18 -2
- package/dist/index.mjs +9 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -973,13 +973,19 @@ interface IFile extends IBaseModel, ITrackingModel<IUser> {
|
|
|
973
973
|
isDraft: boolean;
|
|
974
974
|
}
|
|
975
975
|
|
|
976
|
+
interface ISheetImport extends IBaseModel, ITrackingModel<IUser> {
|
|
977
|
+
sheetUrl: string;
|
|
978
|
+
sheetName: string;
|
|
979
|
+
}
|
|
980
|
+
|
|
976
981
|
type index$c_IBaseModel = IBaseModel;
|
|
977
982
|
type index$c_IFile = IFile;
|
|
983
|
+
type index$c_ISheetImport = ISheetImport;
|
|
978
984
|
type index$c_ITrackingModel<T> = ITrackingModel<T>;
|
|
979
985
|
type index$c_ITrackingTimeScript = ITrackingTimeScript;
|
|
980
986
|
type index$c_ITrackingUserAction = ITrackingUserAction;
|
|
981
987
|
declare namespace index$c {
|
|
982
|
-
export type { index$c_IBaseModel as IBaseModel, index$c_IFile as IFile, index$c_ITrackingModel as ITrackingModel, index$c_ITrackingTimeScript as ITrackingTimeScript, index$c_ITrackingUserAction as ITrackingUserAction };
|
|
988
|
+
export type { index$c_IBaseModel as IBaseModel, index$c_IFile as IFile, index$c_ISheetImport as ISheetImport, index$c_ITrackingModel as ITrackingModel, index$c_ITrackingTimeScript as ITrackingTimeScript, index$c_ITrackingUserAction as ITrackingUserAction };
|
|
983
989
|
}
|
|
984
990
|
|
|
985
991
|
interface IDepartment extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -1184,8 +1190,12 @@ interface IBlog extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1184
1190
|
blog_priority: EPriority;
|
|
1185
1191
|
blog_priorityPoint: number;
|
|
1186
1192
|
blog_category: string | IBlogCategory;
|
|
1187
|
-
|
|
1188
|
-
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
interface IBlogPermission extends IBaseModel, ITrackingModel<IUser> {
|
|
1196
|
+
blog: string | IBlog;
|
|
1197
|
+
typePermission: 'Department' | 'Team' | 'User';
|
|
1198
|
+
refInstanceID: string;
|
|
1189
1199
|
}
|
|
1190
1200
|
|
|
1191
1201
|
interface ITeam extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -1264,9 +1274,17 @@ interface ITaskJob extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1264
1274
|
tj_status: EStatusTaskJob;
|
|
1265
1275
|
tj_priority: EPriority;
|
|
1266
1276
|
tj_priorityPoint: number;
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
interface ITaskJobPermission extends IBaseModel, ITrackingModel<IUser> {
|
|
1280
|
+
taskJob: string | ITaskJob;
|
|
1281
|
+
typePermission: 'Department' | 'Team' | 'User';
|
|
1282
|
+
refInstanceID: string;
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
interface ITaskJobAttachmentBlog extends IBaseModel, ITrackingModel<IUser> {
|
|
1286
|
+
taskJob: string | ITaskJob;
|
|
1287
|
+
blog: string | IBlog;
|
|
1270
1288
|
}
|
|
1271
1289
|
|
|
1272
1290
|
interface ITaskJobBlogAttached extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -1291,6 +1309,7 @@ interface ITaskJobUserPermission extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1291
1309
|
|
|
1292
1310
|
type index$a_IBlog = IBlog;
|
|
1293
1311
|
type index$a_IBlogCategory = IBlogCategory;
|
|
1312
|
+
type index$a_IBlogPermission = IBlogPermission;
|
|
1294
1313
|
type index$a_IDepartment = IDepartment;
|
|
1295
1314
|
type index$a_IDepartmentRole = IDepartmentRole;
|
|
1296
1315
|
type index$a_IDomain = IDomain;
|
|
@@ -1304,11 +1323,13 @@ type index$a_ISheetWorkPin = ISheetWorkPin;
|
|
|
1304
1323
|
type index$a_ISheetWorksCategory = ISheetWorksCategory;
|
|
1305
1324
|
type index$a_ITag = ITag;
|
|
1306
1325
|
type index$a_ITaskJob = ITaskJob;
|
|
1326
|
+
type index$a_ITaskJobAttachmentBlog = ITaskJobAttachmentBlog;
|
|
1307
1327
|
type index$a_ITaskJobBlogAttached = ITaskJobBlogAttached;
|
|
1308
1328
|
type index$a_ITaskJobCheckList = ITaskJobCheckList;
|
|
1309
1329
|
type index$a_ITaskJobDepartmentPermission = ITaskJobDepartmentPermission;
|
|
1310
1330
|
type index$a_ITaskJobDiscuss = ITaskJobDiscuss;
|
|
1311
1331
|
type index$a_ITaskJobLabel = ITaskJobLabel;
|
|
1332
|
+
type index$a_ITaskJobPermission = ITaskJobPermission;
|
|
1312
1333
|
type index$a_ITaskJobTeamPermission = ITaskJobTeamPermission;
|
|
1313
1334
|
type index$a_ITaskJobUserPermission = ITaskJobUserPermission;
|
|
1314
1335
|
type index$a_ITaskJobsGroup = ITaskJobsGroup;
|
|
@@ -1316,7 +1337,7 @@ type index$a_ITeam = ITeam;
|
|
|
1316
1337
|
type index$a_ITeamMember = ITeamMember;
|
|
1317
1338
|
type index$a_ITeamRole = ITeamRole;
|
|
1318
1339
|
declare namespace index$a {
|
|
1319
|
-
export type { index$a_IBlog as IBlog, index$a_IBlogCategory as IBlogCategory, index$a_IDepartment as IDepartment, index$a_IDepartmentRole as IDepartmentRole, index$a_IDomain as IDomain, index$a_ILark as ILark, index$a_ILarkTeam as ILarkTeam, index$a_IManagerWork as IManagerWork, index$a_IManagerWorkPin as IManagerWorkPin, index$a_ISheetWork as ISheetWork, index$a_ISheetWorkManager as ISheetWorkManager, index$a_ISheetWorkPin as ISheetWorkPin, index$a_ISheetWorksCategory as ISheetWorksCategory, index$a_ITag as ITag, index$a_ITaskJob as ITaskJob, index$a_ITaskJobBlogAttached as ITaskJobBlogAttached, index$a_ITaskJobCheckList as ITaskJobCheckList, index$a_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, index$a_ITaskJobDiscuss as ITaskJobDiscuss, index$a_ITaskJobLabel as ITaskJobLabel, index$a_ITaskJobTeamPermission as ITaskJobTeamPermission, index$a_ITaskJobUserPermission as ITaskJobUserPermission, index$a_ITaskJobsGroup as ITaskJobsGroup, index$a_ITeam as ITeam, index$a_ITeamMember as ITeamMember, index$a_ITeamRole as ITeamRole };
|
|
1340
|
+
export type { index$a_IBlog as IBlog, index$a_IBlogCategory as IBlogCategory, index$a_IBlogPermission as IBlogPermission, index$a_IDepartment as IDepartment, index$a_IDepartmentRole as IDepartmentRole, index$a_IDomain as IDomain, index$a_ILark as ILark, index$a_ILarkTeam as ILarkTeam, index$a_IManagerWork as IManagerWork, index$a_IManagerWorkPin as IManagerWorkPin, index$a_ISheetWork as ISheetWork, index$a_ISheetWorkManager as ISheetWorkManager, index$a_ISheetWorkPin as ISheetWorkPin, index$a_ISheetWorksCategory as ISheetWorksCategory, index$a_ITag as ITag, index$a_ITaskJob as ITaskJob, index$a_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, index$a_ITaskJobBlogAttached as ITaskJobBlogAttached, index$a_ITaskJobCheckList as ITaskJobCheckList, index$a_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, index$a_ITaskJobDiscuss as ITaskJobDiscuss, index$a_ITaskJobLabel as ITaskJobLabel, index$a_ITaskJobPermission as ITaskJobPermission, index$a_ITaskJobTeamPermission as ITaskJobTeamPermission, index$a_ITaskJobUserPermission as ITaskJobUserPermission, index$a_ITaskJobsGroup as ITaskJobsGroup, index$a_ITeam as ITeam, index$a_ITeamMember as ITeamMember, index$a_ITeamRole as ITeamRole };
|
|
1320
1341
|
}
|
|
1321
1342
|
|
|
1322
1343
|
interface IAccountAIChannel extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -1334,6 +1355,10 @@ interface IAccountAIGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1334
1355
|
}
|
|
1335
1356
|
|
|
1336
1357
|
interface IAccountEmail extends IBaseModel, ITrackingModel<IUser> {
|
|
1358
|
+
sheetImport: string | ISheetImport;
|
|
1359
|
+
sheetUrl: string;
|
|
1360
|
+
sheetName: string;
|
|
1361
|
+
rowId: string;
|
|
1337
1362
|
email: string;
|
|
1338
1363
|
emailRecover: string;
|
|
1339
1364
|
password: string;
|
|
@@ -1420,6 +1445,7 @@ interface IManagerImageAI extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1420
1445
|
}
|
|
1421
1446
|
|
|
1422
1447
|
interface IAccountCanva extends IBaseModel, ITrackingUserAction, ITrackingModel<IUser> {
|
|
1448
|
+
sheetImport: string | ISheetImport;
|
|
1423
1449
|
sheetUrl: string;
|
|
1424
1450
|
sheetName: string;
|
|
1425
1451
|
rowId: string;
|
|
@@ -1431,6 +1457,7 @@ interface IAccountCanva extends IBaseModel, ITrackingUserAction, ITrackingModel<
|
|
|
1431
1457
|
}
|
|
1432
1458
|
|
|
1433
1459
|
interface IAccountDrive extends IBaseModel, ITrackingModel<IUser> {
|
|
1460
|
+
sheetImport: string | ISheetImport;
|
|
1434
1461
|
sheetUrl: string;
|
|
1435
1462
|
sheetName: string;
|
|
1436
1463
|
rowId: string;
|
|
@@ -1444,6 +1471,7 @@ interface IAccountDrive extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1444
1471
|
}
|
|
1445
1472
|
|
|
1446
1473
|
interface IProxy extends IBaseModel, ITrackingModel<IUser> {
|
|
1474
|
+
sheetImport: string | ISheetImport;
|
|
1447
1475
|
sheetUrl: string;
|
|
1448
1476
|
sheetName: string;
|
|
1449
1477
|
rowId: string;
|
|
@@ -1486,6 +1514,7 @@ interface IAccountVPS extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1486
1514
|
}
|
|
1487
1515
|
|
|
1488
1516
|
interface IAccountVPN extends IBaseModel, ITrackingModel<IUser> {
|
|
1517
|
+
sheetImport: string | ISheetImport;
|
|
1489
1518
|
sheetUrl: string;
|
|
1490
1519
|
sheetName: string;
|
|
1491
1520
|
rowId: string;
|
|
@@ -1510,6 +1539,7 @@ interface IAccountVPN extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1510
1539
|
}
|
|
1511
1540
|
|
|
1512
1541
|
interface IAccountCHPlayICloud extends IBaseModel, ITrackingModel<IUser> {
|
|
1542
|
+
sheetImport: string | ISheetImport;
|
|
1513
1543
|
sheetUrl: string;
|
|
1514
1544
|
sheetName: string;
|
|
1515
1545
|
rowId: string;
|
|
@@ -1560,9 +1590,11 @@ interface IDevice extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1560
1590
|
interface IAccount extends IBaseModel, ITrackingModel<IUser> {
|
|
1561
1591
|
group: IAccountsGroup | string;
|
|
1562
1592
|
typeSocial: ETypeSocial;
|
|
1593
|
+
sheetImport: string | ISheetImport;
|
|
1563
1594
|
sheetUrl: string;
|
|
1564
1595
|
sheetName: string;
|
|
1565
1596
|
rowId: string;
|
|
1597
|
+
accountID: string;
|
|
1566
1598
|
accountDeviceType: string;
|
|
1567
1599
|
accountDeviceName: string;
|
|
1568
1600
|
idea: string | IManagerWork;
|
|
@@ -1643,9 +1675,11 @@ interface IAccountRaw extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1643
1675
|
accountSocialSync: IAccount;
|
|
1644
1676
|
timeImport: Date;
|
|
1645
1677
|
statusImport: string;
|
|
1678
|
+
sheetImport: string | ISheetImport;
|
|
1646
1679
|
sheetUrl: string;
|
|
1647
1680
|
sheetName: string;
|
|
1648
1681
|
rowId: string;
|
|
1682
|
+
accountID: string;
|
|
1649
1683
|
statusSyncAccount: EStatusSyncAccountSocial;
|
|
1650
1684
|
timeSyncAccount: Date;
|
|
1651
1685
|
accountDeviceType: string;
|
|
@@ -3031,6 +3065,7 @@ type index$4_IAuthResetPassword = IAuthResetPassword;
|
|
|
3031
3065
|
type index$4_IBaseModel = IBaseModel;
|
|
3032
3066
|
type index$4_IBlog = IBlog;
|
|
3033
3067
|
type index$4_IBlogCategory = IBlogCategory;
|
|
3068
|
+
type index$4_IBlogPermission = IBlogPermission;
|
|
3034
3069
|
type index$4_IDepartment = IDepartment;
|
|
3035
3070
|
type index$4_IDepartmentRole = IDepartmentRole;
|
|
3036
3071
|
type index$4_IDevice = IDevice;
|
|
@@ -3085,6 +3120,7 @@ type index$4_IPC = IPC;
|
|
|
3085
3120
|
type index$4_IProxy = IProxy;
|
|
3086
3121
|
type index$4_IRole = IRole;
|
|
3087
3122
|
type index$4_IRoleFeature = IRoleFeature;
|
|
3123
|
+
type index$4_ISheetImport = ISheetImport;
|
|
3088
3124
|
type index$4_ISheetWork = ISheetWork;
|
|
3089
3125
|
type index$4_ISheetWorkManager = ISheetWorkManager;
|
|
3090
3126
|
type index$4_ISheetWorkPin = ISheetWorkPin;
|
|
@@ -3092,11 +3128,13 @@ type index$4_ISheetWorksCategory = ISheetWorksCategory;
|
|
|
3092
3128
|
type index$4_ISheetsTool = ISheetsTool;
|
|
3093
3129
|
type index$4_ITag = ITag;
|
|
3094
3130
|
type index$4_ITaskJob = ITaskJob;
|
|
3131
|
+
type index$4_ITaskJobAttachmentBlog = ITaskJobAttachmentBlog;
|
|
3095
3132
|
type index$4_ITaskJobBlogAttached = ITaskJobBlogAttached;
|
|
3096
3133
|
type index$4_ITaskJobCheckList = ITaskJobCheckList;
|
|
3097
3134
|
type index$4_ITaskJobDepartmentPermission = ITaskJobDepartmentPermission;
|
|
3098
3135
|
type index$4_ITaskJobDiscuss = ITaskJobDiscuss;
|
|
3099
3136
|
type index$4_ITaskJobLabel = ITaskJobLabel;
|
|
3137
|
+
type index$4_ITaskJobPermission = ITaskJobPermission;
|
|
3100
3138
|
type index$4_ITaskJobTeamPermission = ITaskJobTeamPermission;
|
|
3101
3139
|
type index$4_ITaskJobUserPermission = ITaskJobUserPermission;
|
|
3102
3140
|
type index$4_ITaskJobsGroup = ITaskJobsGroup;
|
|
@@ -3120,7 +3158,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
3120
3158
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
3121
3159
|
type index$4_IVoiceStores = IVoiceStores;
|
|
3122
3160
|
declare namespace index$4 {
|
|
3123
|
-
export { index$b as Auth, index$c as Common, index$6 as History, type index$4_IAccount as IAccount, type index$4_IAccountAI as IAccountAI, type index$4_IAccountAIChannel as IAccountAIChannel, type index$4_IAccountAIGroup as IAccountAIGroup, type index$4_IAccountAIImage as IAccountAIImage, type index$4_IAccountAIImageChannel as IAccountAIImageChannel, type index$4_IAccountAIImageGroup as IAccountAIImageGroup, type index$4_IAccountAIImageInfo as IAccountAIImageInfo, type index$4_IAccountAIImageTag as IAccountAIImageTag, type index$4_IAccountAIInfo as IAccountAIInfo, type index$4_IAccountAITag as IAccountAITag, type index$4_IAccountAIVoice as IAccountAIVoice, type index$4_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$4_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$4_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$4_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$4_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$4_IAccountCanva as IAccountCanva, type index$4_IAccountDrive as IAccountDrive, type index$4_IAccountEmail as IAccountEmail, type index$4_IAccountEmailProxy as IAccountEmailProxy, type index$4_IAccountEmailTag as IAccountEmailTag, type index$4_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$4_IAccountRaw as IAccountRaw, type index$4_IAccountVPN as IAccountVPN, type index$4_IAccountVPS as IAccountVPS, type index$4_IAccountVPSGroup as IAccountVPSGroup, type index$4_IAccountsGroup as IAccountsGroup, type index$4_IAuthLogin as IAuthLogin, type index$4_IAuthResetPassword as IAuthResetPassword, type index$4_IBaseModel as IBaseModel, type index$4_IBlog as IBlog, type index$4_IBlogCategory as IBlogCategory, type index$4_IDepartment as IDepartment, type index$4_IDepartmentRole as IDepartmentRole, type index$4_IDevice as IDevice, type index$4_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$4_IDeviceSettingForCHPlay as IDeviceSettingForCHPlay, type index$4_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$4_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$4_IDomain as IDomain, type index$4_IFile as IFile, type index$4_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$4_IHistoryTaskAIImage as IHistoryTaskAIImage, type index$4_IHistoryTaskAIVoice as IHistoryTaskAIVoice, type index$4_IHistoryTaskCanva as IHistoryTaskCanva, type index$4_IIdea as IIdea, type index$4_IInstagramInteractExplore as IInstagramInteractExplore, type index$4_IInstagramInteractFollow as IInstagramInteractFollow, type index$4_IInstagramInteractReel as IInstagramInteractReel, type index$4_IInstagramInteractReplyComment as IInstagramInteractReplyComment, type index$4_IInstagramInteractReplyMessage as IInstagramInteractReplyMessage, type index$4_IInstagramInteractStory as IInstagramInteractStory, type index$4_IInstagramPostHighLight as IInstagramPostHighLight, type index$4_IInstagramPostNew as IInstagramPostNew, type index$4_IInstagramPostReel as IInstagramPostReel, type index$4_IInstagramPostSquare as IInstagramPostSquare, type index$4_IInstagramPostStory as IInstagramPostStory, type index$4_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$4_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$4_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$4_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$4_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$4_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$4_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$4_IInstagramSettingPost as IInstagramSettingPost, type index$4_IInteractSentMessageDetail as IInteractSentMessageDetail, type index$4_ILark as ILark, type index$4_ILarkTeam as ILarkTeam, type index$4_IManagerImageAI as IManagerImageAI, type index$4_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$4_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$4_IManagerSheet as IManagerSheet, type index$4_IManagerSheetChildren as IManagerSheetChildren, type index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$4_IManagerSheetGroup as IManagerSheetGroup, type index$4_IManagerWork as IManagerWork, type index$4_IManagerWorkPin as IManagerWorkPin, type index$4_INiche as INiche, type index$4_IOtpConfirm as IOtpConfirm, type index$4_IOtpCreateSession as IOtpCreateSession, type index$4_IOtpSend as IOtpSend, type index$4_IPC as IPC, type index$4_IProxy as IProxy, type index$4_IRole as IRole, type index$4_IRoleFeature as IRoleFeature, type index$4_ISheetWork as ISheetWork, type index$4_ISheetWorkManager as ISheetWorkManager, type index$4_ISheetWorkPin as ISheetWorkPin, type index$4_ISheetWorksCategory as ISheetWorksCategory, type index$4_ISheetsTool as ISheetsTool, type index$4_ITag as ITag, type index$4_ITaskJob as ITaskJob, type index$4_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$4_ITaskJobCheckList as ITaskJobCheckList, type index$4_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$4_ITaskJobDiscuss as ITaskJobDiscuss, type index$4_ITaskJobLabel as ITaskJobLabel, type index$4_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$4_ITaskJobUserPermission as ITaskJobUserPermission, type index$4_ITaskJobsGroup as ITaskJobsGroup, type index$4_ITeam as ITeam, type index$4_ITeamMember as ITeamMember, type index$4_ITeamRole as ITeamRole, type index$4_IThreadsInteractFollow as IThreadsInteractFollow, type index$4_IThreadsInteractReplyComment as IThreadsInteractReplyComment, type index$4_IThreadsPostNew as IThreadsPostNew, type index$4_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$4_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$4_IThreadsSettingPost as IThreadsSettingPost, type index$4_IToken as IToken, type index$4_ITrackingModel as ITrackingModel, type index$4_ITrackingTimeScript as ITrackingTimeScript, type index$4_ITrackingUserAction as ITrackingUserAction, type index$4_IUser as IUser, type index$4_IUserRole as IUserRole, type index$4_IVoiceGenerated as IVoiceGenerated, type index$4_IVoiceLanguage as IVoiceLanguage, type index$4_IVoiceSettingDelay as IVoiceSettingDelay, type index$4_IVoiceStores as IVoiceStores, index$5 as Socials, index$8 as TaskBrowsers, index$9 as TaskPhones, index$7 as Tool, index$a as Web };
|
|
3161
|
+
export { index$b as Auth, index$c as Common, index$6 as History, type index$4_IAccount as IAccount, type index$4_IAccountAI as IAccountAI, type index$4_IAccountAIChannel as IAccountAIChannel, type index$4_IAccountAIGroup as IAccountAIGroup, type index$4_IAccountAIImage as IAccountAIImage, type index$4_IAccountAIImageChannel as IAccountAIImageChannel, type index$4_IAccountAIImageGroup as IAccountAIImageGroup, type index$4_IAccountAIImageInfo as IAccountAIImageInfo, type index$4_IAccountAIImageTag as IAccountAIImageTag, type index$4_IAccountAIInfo as IAccountAIInfo, type index$4_IAccountAITag as IAccountAITag, type index$4_IAccountAIVoice as IAccountAIVoice, type index$4_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$4_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$4_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$4_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$4_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$4_IAccountCanva as IAccountCanva, type index$4_IAccountDrive as IAccountDrive, type index$4_IAccountEmail as IAccountEmail, type index$4_IAccountEmailProxy as IAccountEmailProxy, type index$4_IAccountEmailTag as IAccountEmailTag, type index$4_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$4_IAccountRaw as IAccountRaw, type index$4_IAccountVPN as IAccountVPN, type index$4_IAccountVPS as IAccountVPS, type index$4_IAccountVPSGroup as IAccountVPSGroup, type index$4_IAccountsGroup as IAccountsGroup, type index$4_IAuthLogin as IAuthLogin, type index$4_IAuthResetPassword as IAuthResetPassword, type index$4_IBaseModel as IBaseModel, type index$4_IBlog as IBlog, type index$4_IBlogCategory as IBlogCategory, type index$4_IBlogPermission as IBlogPermission, type index$4_IDepartment as IDepartment, type index$4_IDepartmentRole as IDepartmentRole, type index$4_IDevice as IDevice, type index$4_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$4_IDeviceSettingForCHPlay as IDeviceSettingForCHPlay, type index$4_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$4_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$4_IDomain as IDomain, type index$4_IFile as IFile, type index$4_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$4_IHistoryTaskAIImage as IHistoryTaskAIImage, type index$4_IHistoryTaskAIVoice as IHistoryTaskAIVoice, type index$4_IHistoryTaskCanva as IHistoryTaskCanva, type index$4_IIdea as IIdea, type index$4_IInstagramInteractExplore as IInstagramInteractExplore, type index$4_IInstagramInteractFollow as IInstagramInteractFollow, type index$4_IInstagramInteractReel as IInstagramInteractReel, type index$4_IInstagramInteractReplyComment as IInstagramInteractReplyComment, type index$4_IInstagramInteractReplyMessage as IInstagramInteractReplyMessage, type index$4_IInstagramInteractStory as IInstagramInteractStory, type index$4_IInstagramPostHighLight as IInstagramPostHighLight, type index$4_IInstagramPostNew as IInstagramPostNew, type index$4_IInstagramPostReel as IInstagramPostReel, type index$4_IInstagramPostSquare as IInstagramPostSquare, type index$4_IInstagramPostStory as IInstagramPostStory, type index$4_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$4_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$4_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$4_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$4_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$4_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$4_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$4_IInstagramSettingPost as IInstagramSettingPost, type index$4_IInteractSentMessageDetail as IInteractSentMessageDetail, type index$4_ILark as ILark, type index$4_ILarkTeam as ILarkTeam, type index$4_IManagerImageAI as IManagerImageAI, type index$4_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$4_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$4_IManagerSheet as IManagerSheet, type index$4_IManagerSheetChildren as IManagerSheetChildren, type index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$4_IManagerSheetGroup as IManagerSheetGroup, type index$4_IManagerWork as IManagerWork, type index$4_IManagerWorkPin as IManagerWorkPin, type index$4_INiche as INiche, type index$4_IOtpConfirm as IOtpConfirm, type index$4_IOtpCreateSession as IOtpCreateSession, type index$4_IOtpSend as IOtpSend, type index$4_IPC as IPC, type index$4_IProxy as IProxy, type index$4_IRole as IRole, type index$4_IRoleFeature as IRoleFeature, type index$4_ISheetImport as ISheetImport, type index$4_ISheetWork as ISheetWork, type index$4_ISheetWorkManager as ISheetWorkManager, type index$4_ISheetWorkPin as ISheetWorkPin, type index$4_ISheetWorksCategory as ISheetWorksCategory, type index$4_ISheetsTool as ISheetsTool, type index$4_ITag as ITag, type index$4_ITaskJob as ITaskJob, type index$4_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, type index$4_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$4_ITaskJobCheckList as ITaskJobCheckList, type index$4_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$4_ITaskJobDiscuss as ITaskJobDiscuss, type index$4_ITaskJobLabel as ITaskJobLabel, type index$4_ITaskJobPermission as ITaskJobPermission, type index$4_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$4_ITaskJobUserPermission as ITaskJobUserPermission, type index$4_ITaskJobsGroup as ITaskJobsGroup, type index$4_ITeam as ITeam, type index$4_ITeamMember as ITeamMember, type index$4_ITeamRole as ITeamRole, type index$4_IThreadsInteractFollow as IThreadsInteractFollow, type index$4_IThreadsInteractReplyComment as IThreadsInteractReplyComment, type index$4_IThreadsPostNew as IThreadsPostNew, type index$4_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$4_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$4_IThreadsSettingPost as IThreadsSettingPost, type index$4_IToken as IToken, type index$4_ITrackingModel as ITrackingModel, type index$4_ITrackingTimeScript as ITrackingTimeScript, type index$4_ITrackingUserAction as ITrackingUserAction, type index$4_IUser as IUser, type index$4_IUserRole as IUserRole, type index$4_IVoiceGenerated as IVoiceGenerated, type index$4_IVoiceLanguage as IVoiceLanguage, type index$4_IVoiceSettingDelay as IVoiceSettingDelay, type index$4_IVoiceStores as IVoiceStores, index$5 as Socials, index$8 as TaskBrowsers, index$9 as TaskPhones, index$7 as Tool, index$a as Web };
|
|
3124
3162
|
}
|
|
3125
3163
|
|
|
3126
3164
|
interface IDataUser {
|
|
@@ -3177,8 +3215,12 @@ declare namespace index$3 {
|
|
|
3177
3215
|
}
|
|
3178
3216
|
|
|
3179
3217
|
interface IBaseDto {
|
|
3180
|
-
|
|
3181
|
-
|
|
3218
|
+
teamName: string;
|
|
3219
|
+
departmentName: string;
|
|
3220
|
+
}
|
|
3221
|
+
interface IBaseSheetImportDto {
|
|
3222
|
+
sheetUrl: string;
|
|
3223
|
+
sheetName: string;
|
|
3182
3224
|
}
|
|
3183
3225
|
|
|
3184
3226
|
interface FindUserDto extends IBaseDto, IUser {
|
|
@@ -3362,23 +3404,69 @@ interface FilterInstagramSettingPostDto extends IBaseDto, IInstagramSettingPost
|
|
|
3362
3404
|
}
|
|
3363
3405
|
|
|
3364
3406
|
interface FindManagerSheetDto extends IBaseDto, IManagerSheet {
|
|
3407
|
+
listSheetChildren: Array<{
|
|
3408
|
+
idea: IManagerWork;
|
|
3409
|
+
niche: IManagerWork[];
|
|
3410
|
+
department: IDepartment;
|
|
3411
|
+
managerSheetChildren: IManagerSheetChildren;
|
|
3412
|
+
managerSheetChildrenGroupItem: Array<{
|
|
3413
|
+
group: IManagerSheetChildrenGroup;
|
|
3414
|
+
groupItems: Array<IManagerSheetChildrenGroupItem>;
|
|
3415
|
+
}>;
|
|
3416
|
+
}>;
|
|
3365
3417
|
}
|
|
3366
3418
|
interface FilterManagerSheetDto extends IBaseDto, IManagerSheet {
|
|
3367
3419
|
}
|
|
3368
3420
|
|
|
3369
3421
|
interface FindIManagerImageAIDto extends IBaseDto, IManagerImageAI {
|
|
3422
|
+
userWork: IUser;
|
|
3423
|
+
departmentWork: IDepartment;
|
|
3424
|
+
sheetWorks: ISheetWork[];
|
|
3425
|
+
classify: ETypeManagerWorkClassify;
|
|
3426
|
+
accountsAttached: IManagerImageAIUserAttached[];
|
|
3427
|
+
recordManagerImageAI: Record<keyof typeof EFolderImageAI, {
|
|
3428
|
+
numberImages: number;
|
|
3429
|
+
images: IManagerImageAIItemStore[];
|
|
3430
|
+
}>;
|
|
3431
|
+
}
|
|
3432
|
+
interface FindForReviewDto {
|
|
3433
|
+
classify: string;
|
|
3434
|
+
userWork: IUser;
|
|
3435
|
+
departmentWork: IDepartment;
|
|
3436
|
+
sheetWorks: ISheetWork[];
|
|
3370
3437
|
}
|
|
3371
3438
|
interface FilterIManagerImageAIDto extends IBaseDto, IManagerImageAI {
|
|
3372
3439
|
}
|
|
3373
3440
|
|
|
3374
3441
|
interface FindIAccountEmailDto extends IBaseDto, IAccountEmail {
|
|
3442
|
+
provider: string;
|
|
3443
|
+
listProxy: IProxy[];
|
|
3444
|
+
tagWorks?: {
|
|
3445
|
+
idea: IManagerWork;
|
|
3446
|
+
niches: IManagerWork[];
|
|
3447
|
+
}[];
|
|
3448
|
+
tagsContent: IAccountEmailTag[];
|
|
3449
|
+
tagsImage: IAccountEmailTag[];
|
|
3450
|
+
tagsVoice: IAccountEmailTag[];
|
|
3451
|
+
listAISynchronized: EEmailTagType[];
|
|
3452
|
+
listTypeTags: EEmailTagType[];
|
|
3453
|
+
dataStoreGPT: {
|
|
3454
|
+
password: string;
|
|
3455
|
+
code2FA: string;
|
|
3456
|
+
};
|
|
3375
3457
|
}
|
|
3376
3458
|
interface FilterIAccountEmailDto extends IBaseDto, IAccountEmail {
|
|
3377
3459
|
}
|
|
3378
3460
|
|
|
3379
|
-
interface
|
|
3461
|
+
interface FindAccountAIVoiceDto extends IBaseDto, IAccountAIVoice {
|
|
3462
|
+
sheetWorksGroup: ISheetWorksCategory[];
|
|
3463
|
+
classifyManagerWork: ETypeManagerWorkClassify;
|
|
3464
|
+
listAccountInfoChannels: Array<{
|
|
3465
|
+
accountInfo: IAccountAIVoiceInfo;
|
|
3466
|
+
listChannels: IAccountAIVoiceChannel[];
|
|
3467
|
+
}>;
|
|
3380
3468
|
}
|
|
3381
|
-
interface
|
|
3469
|
+
interface FilterAccountAIVoiceDto extends IBaseDto, IAccountAIVoice {
|
|
3382
3470
|
}
|
|
3383
3471
|
|
|
3384
3472
|
interface FindIAccountAIVoiceInfoDto extends IBaseDto, IAccountAIVoiceInfo {
|
|
@@ -3386,9 +3474,15 @@ interface FindIAccountAIVoiceInfoDto extends IBaseDto, IAccountAIVoiceInfo {
|
|
|
3386
3474
|
interface FilterIAccountAIVoiceInfoDto extends IBaseDto, IAccountAIVoiceInfo {
|
|
3387
3475
|
}
|
|
3388
3476
|
|
|
3389
|
-
interface
|
|
3477
|
+
interface FindAccountAIImageDto extends IBaseDto, IAccountAIImage {
|
|
3478
|
+
sheetWorksGroup: ISheetWorksCategory[];
|
|
3479
|
+
classifyManagerWork: ETypeManagerWorkClassify;
|
|
3480
|
+
listAccountInfoChannels: Array<{
|
|
3481
|
+
accountInfo: IAccountAIImageInfo;
|
|
3482
|
+
listChannels: IAccountAIImageChannel[];
|
|
3483
|
+
}>;
|
|
3390
3484
|
}
|
|
3391
|
-
interface
|
|
3485
|
+
interface FilterAccountAIImageDto extends IBaseDto, IAccountAIImage {
|
|
3392
3486
|
}
|
|
3393
3487
|
|
|
3394
3488
|
interface FindIAccountAIImageInfoDto extends IBaseDto, IAccountAIImageInfo {
|
|
@@ -3396,9 +3490,15 @@ interface FindIAccountAIImageInfoDto extends IBaseDto, IAccountAIImageInfo {
|
|
|
3396
3490
|
interface FilterIAccountAIImageInfoDto extends IBaseDto, IAccountAIImageInfo {
|
|
3397
3491
|
}
|
|
3398
3492
|
|
|
3399
|
-
interface
|
|
3493
|
+
interface FindAccountAIDto extends IBaseDto, IAccountAI {
|
|
3494
|
+
sheetWorksGroup: ISheetWorksCategory[];
|
|
3495
|
+
classifyManagerWork: ETypeManagerWorkClassify;
|
|
3496
|
+
listAccountInfoChannels: Array<{
|
|
3497
|
+
accountInfo: IAccountAIInfo;
|
|
3498
|
+
listChannels: IAccountAIChannel[];
|
|
3499
|
+
}>;
|
|
3400
3500
|
}
|
|
3401
|
-
interface
|
|
3501
|
+
interface FilterAccountAIDto extends IBaseDto, IAccountAI {
|
|
3402
3502
|
}
|
|
3403
3503
|
|
|
3404
3504
|
interface FindIAccountAIInfoDto extends IBaseDto, IAccountAIInfo {
|
|
@@ -3435,10 +3535,10 @@ interface FindOverviewAccountCanvaDto {
|
|
|
3435
3535
|
};
|
|
3436
3536
|
}
|
|
3437
3537
|
|
|
3438
|
-
interface FindAccountDriveDto extends IBaseDto, IAccountDrive {
|
|
3439
|
-
}
|
|
3440
3538
|
interface FilterAccountDriveDto extends IBaseDto, IAccountDrive {
|
|
3441
3539
|
}
|
|
3540
|
+
interface FindAccountDriveDto extends IBaseDto, IAccountDrive {
|
|
3541
|
+
}
|
|
3442
3542
|
interface FindOverviewAccountDriveDto {
|
|
3443
3543
|
totalAccounts: {
|
|
3444
3544
|
total: string;
|
|
@@ -3464,8 +3564,6 @@ interface FindOverviewAccountDriveDto {
|
|
|
3464
3564
|
};
|
|
3465
3565
|
}
|
|
3466
3566
|
|
|
3467
|
-
interface FindProxyDto extends IBaseDto, IProxy {
|
|
3468
|
-
}
|
|
3469
3567
|
interface FilterProxyDto extends IBaseDto, IProxy {
|
|
3470
3568
|
}
|
|
3471
3569
|
interface FindOverviewProxyDto {
|
|
@@ -3489,6 +3587,12 @@ interface FindOverviewProxyDto {
|
|
|
3489
3587
|
ios: number;
|
|
3490
3588
|
};
|
|
3491
3589
|
}
|
|
3590
|
+
interface FindProxyDto extends IBaseDto, IProxy {
|
|
3591
|
+
listDeviceKeys: string[];
|
|
3592
|
+
listDeviceName: string[];
|
|
3593
|
+
listDeviceOS: string[];
|
|
3594
|
+
ipRunCountDevice: number;
|
|
3595
|
+
}
|
|
3492
3596
|
|
|
3493
3597
|
interface FindAccountVPSDto extends IBaseDto, IAccountVPS {
|
|
3494
3598
|
}
|
|
@@ -3500,10 +3604,15 @@ interface FindAccountVPSGroupDto extends IBaseDto, IAccountVPSGroup {
|
|
|
3500
3604
|
interface FilterAccountVPSGroupDto extends IBaseDto, IAccountVPSGroup {
|
|
3501
3605
|
}
|
|
3502
3606
|
|
|
3503
|
-
interface FindAccountVPNDto extends IBaseDto, IAccountVPN {
|
|
3504
|
-
}
|
|
3505
3607
|
interface FilterAccountVPNDto extends IBaseDto, IAccountVPN {
|
|
3506
3608
|
}
|
|
3609
|
+
interface FindAccountVPNDto extends IBaseDto, IAccountVPN {
|
|
3610
|
+
pcName: string;
|
|
3611
|
+
listDeviceKey: string[];
|
|
3612
|
+
listDeviceName: string[];
|
|
3613
|
+
listDeviceOS: ETypeDeviceOS[];
|
|
3614
|
+
numberRunOnDevice: number;
|
|
3615
|
+
}
|
|
3507
3616
|
interface FindOverviewAccountVPNDto {
|
|
3508
3617
|
totalAccounts: {
|
|
3509
3618
|
total: string;
|
|
@@ -3543,10 +3652,10 @@ interface FindOverviewAccountVPNDto {
|
|
|
3543
3652
|
};
|
|
3544
3653
|
}
|
|
3545
3654
|
|
|
3546
|
-
interface FindAccountCHPlayICloudDto extends IBaseDto, IAccountCHPlayICloud {
|
|
3547
|
-
}
|
|
3548
3655
|
interface FilterAccountCHPlayICloudDto extends IBaseDto, IAccountCHPlayICloud {
|
|
3549
3656
|
}
|
|
3657
|
+
interface FindAccountCHPlayICloudDto extends IBaseDto, IAccountCHPlayICloud {
|
|
3658
|
+
}
|
|
3550
3659
|
interface FindOverviewAccountCHPlayICloudDto {
|
|
3551
3660
|
totalAccounts: {
|
|
3552
3661
|
total: string;
|
|
@@ -3717,23 +3826,45 @@ interface FindAccountRawDto extends IBaseDto, IAccountRaw {
|
|
|
3717
3826
|
time: Date;
|
|
3718
3827
|
};
|
|
3719
3828
|
}
|
|
3720
|
-
interface
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
|
|
3732
|
-
|
|
3733
|
-
|
|
3734
|
-
|
|
3829
|
+
interface AutoFillOverviewAccountRawDto {
|
|
3830
|
+
idea: {
|
|
3831
|
+
colName: string;
|
|
3832
|
+
colSymbol: string;
|
|
3833
|
+
listValsOnCol: string[];
|
|
3834
|
+
};
|
|
3835
|
+
niche: {
|
|
3836
|
+
colName: string;
|
|
3837
|
+
colSymbol: string;
|
|
3838
|
+
listValsOnCol: string[];
|
|
3839
|
+
};
|
|
3840
|
+
accountID: {
|
|
3841
|
+
colName: string;
|
|
3842
|
+
colSymbol: string;
|
|
3843
|
+
listValsOnCol: string[];
|
|
3844
|
+
};
|
|
3845
|
+
oldUsername: {
|
|
3846
|
+
colName: string;
|
|
3847
|
+
colSymbol: string;
|
|
3848
|
+
listValsOnCol: string[];
|
|
3849
|
+
};
|
|
3735
3850
|
}
|
|
3736
|
-
interface AutoFillAccountRawDto
|
|
3851
|
+
interface AutoFillAccountRawDto {
|
|
3852
|
+
idea: {
|
|
3853
|
+
id: string;
|
|
3854
|
+
name: string;
|
|
3855
|
+
};
|
|
3856
|
+
niche: {
|
|
3857
|
+
id: string;
|
|
3858
|
+
name: string;
|
|
3859
|
+
};
|
|
3860
|
+
accountId: {
|
|
3861
|
+
id: string;
|
|
3862
|
+
val: string;
|
|
3863
|
+
};
|
|
3864
|
+
oldUsername: {
|
|
3865
|
+
id: string;
|
|
3866
|
+
name: string;
|
|
3867
|
+
};
|
|
3737
3868
|
newUsername: string;
|
|
3738
3869
|
newFullname: string;
|
|
3739
3870
|
timeExecuteChangeInfo: Date;
|
|
@@ -3742,6 +3873,7 @@ interface AutoFillAccountRawDto extends IBaseDto, IAccountRaw {
|
|
|
3742
3873
|
newPassword: string;
|
|
3743
3874
|
timeExecutePassword: Date;
|
|
3744
3875
|
new2FA: string;
|
|
3876
|
+
isTurnOn2FA: boolean;
|
|
3745
3877
|
timeExecute2FA: Date;
|
|
3746
3878
|
newEmail: string;
|
|
3747
3879
|
timeExecuteEmail: Date;
|
|
@@ -3948,6 +4080,15 @@ declare namespace index$2 {
|
|
|
3948
4080
|
}
|
|
3949
4081
|
|
|
3950
4082
|
interface FindTaskAIContentDto extends IBaseDto, ITaskAIContent {
|
|
4083
|
+
keyWords: string;
|
|
4084
|
+
keyWordsBlank: string;
|
|
4085
|
+
promptInput: string;
|
|
4086
|
+
groupNameRun: string;
|
|
4087
|
+
columnType: ETypeColumnManagerWork;
|
|
4088
|
+
managerSheet: IManagerSheet;
|
|
4089
|
+
managerSheetChildren: IManagerSheetChildren;
|
|
4090
|
+
accountInfo: IAccountAIInfo;
|
|
4091
|
+
accountChannel: IAccountAIChannel;
|
|
3951
4092
|
}
|
|
3952
4093
|
interface FilterTaskAIContentDto extends IBaseDto, ITaskAIContent {
|
|
3953
4094
|
}
|
|
@@ -4001,8 +4142,8 @@ interface FilterBlogCategoryDto extends IBaseDto, IBlogCategory {
|
|
|
4001
4142
|
}
|
|
4002
4143
|
|
|
4003
4144
|
interface FindLarkDto extends IBaseDto, ILark {
|
|
4004
|
-
|
|
4005
|
-
|
|
4145
|
+
teamNamesAssignments: string[];
|
|
4146
|
+
userNamesAssignments: string[];
|
|
4006
4147
|
}
|
|
4007
4148
|
interface FilterLarkDto extends IBaseDto, ILark {
|
|
4008
4149
|
}
|
|
@@ -4018,7 +4159,11 @@ interface FilterDepartmentDto extends IBaseDto, IDepartment {
|
|
|
4018
4159
|
}
|
|
4019
4160
|
|
|
4020
4161
|
type index_AutoFillAccountRawDto = AutoFillAccountRawDto;
|
|
4162
|
+
type index_AutoFillOverviewAccountRawDto = AutoFillOverviewAccountRawDto;
|
|
4021
4163
|
type index_ExportDto = ExportDto;
|
|
4164
|
+
type index_FilterAccountAIDto = FilterAccountAIDto;
|
|
4165
|
+
type index_FilterAccountAIImageDto = FilterAccountAIImageDto;
|
|
4166
|
+
type index_FilterAccountAIVoiceDto = FilterAccountAIVoiceDto;
|
|
4022
4167
|
type index_FilterAccountCHPlayICloudDto = FilterAccountCHPlayICloudDto;
|
|
4023
4168
|
type index_FilterAccountCanvaDto = FilterAccountCanvaDto;
|
|
4024
4169
|
type index_FilterAccountDriveDto = FilterAccountDriveDto;
|
|
@@ -4037,11 +4182,8 @@ type index_FilterHistoryTaskAIContentDto = FilterHistoryTaskAIContentDto;
|
|
|
4037
4182
|
type index_FilterHistoryTaskAIImageDto = FilterHistoryTaskAIImageDto;
|
|
4038
4183
|
type index_FilterHistoryTaskAIVoiceDto = FilterHistoryTaskAIVoiceDto;
|
|
4039
4184
|
type index_FilterHistoryTaskCanvaDto = FilterHistoryTaskCanvaDto;
|
|
4040
|
-
type index_FilterIAccountAIDto = FilterIAccountAIDto;
|
|
4041
|
-
type index_FilterIAccountAIImageDto = FilterIAccountAIImageDto;
|
|
4042
4185
|
type index_FilterIAccountAIImageInfoDto = FilterIAccountAIImageInfoDto;
|
|
4043
4186
|
type index_FilterIAccountAIInfoDto = FilterIAccountAIInfoDto;
|
|
4044
|
-
type index_FilterIAccountAIVoiceDto = FilterIAccountAIVoiceDto;
|
|
4045
4187
|
type index_FilterIAccountAIVoiceInfoDto = FilterIAccountAIVoiceInfoDto;
|
|
4046
4188
|
type index_FilterIAccountEmailDto = FilterIAccountEmailDto;
|
|
4047
4189
|
type index_FilterIManagerImageAIDto = FilterIManagerImageAIDto;
|
|
@@ -4080,6 +4222,9 @@ type index_FilterThreadsSettingInteractFollowDto = FilterThreadsSettingInteractF
|
|
|
4080
4222
|
type index_FilterThreadsSettingInteractReplyCommentDto = FilterThreadsSettingInteractReplyCommentDto;
|
|
4081
4223
|
type index_FilterThreadsSettingPostDto = FilterThreadsSettingPostDto;
|
|
4082
4224
|
type index_FilterUserDto = FilterUserDto;
|
|
4225
|
+
type index_FindAccountAIDto = FindAccountAIDto;
|
|
4226
|
+
type index_FindAccountAIImageDto = FindAccountAIImageDto;
|
|
4227
|
+
type index_FindAccountAIVoiceDto = FindAccountAIVoiceDto;
|
|
4083
4228
|
type index_FindAccountCHPlayICloudDto = FindAccountCHPlayICloudDto;
|
|
4084
4229
|
type index_FindAccountCanvaDto = FindAccountCanvaDto;
|
|
4085
4230
|
type index_FindAccountDriveDto = FindAccountDriveDto;
|
|
@@ -4093,15 +4238,13 @@ type index_FindBlogCategoryDto = FindBlogCategoryDto;
|
|
|
4093
4238
|
type index_FindBlogDto = FindBlogDto;
|
|
4094
4239
|
type index_FindDepartmentDto = FindDepartmentDto;
|
|
4095
4240
|
type index_FindDeviceDto = FindDeviceDto;
|
|
4241
|
+
type index_FindForReviewDto = FindForReviewDto;
|
|
4096
4242
|
type index_FindHistoryTaskAIContentDto = FindHistoryTaskAIContentDto;
|
|
4097
4243
|
type index_FindHistoryTaskAIImageDto = FindHistoryTaskAIImageDto;
|
|
4098
4244
|
type index_FindHistoryTaskAIVoiceDto = FindHistoryTaskAIVoiceDto;
|
|
4099
4245
|
type index_FindHistoryTaskCanvaDto = FindHistoryTaskCanvaDto;
|
|
4100
|
-
type index_FindIAccountAIDto = FindIAccountAIDto;
|
|
4101
|
-
type index_FindIAccountAIImageDto = FindIAccountAIImageDto;
|
|
4102
4246
|
type index_FindIAccountAIImageInfoDto = FindIAccountAIImageInfoDto;
|
|
4103
4247
|
type index_FindIAccountAIInfoDto = FindIAccountAIInfoDto;
|
|
4104
|
-
type index_FindIAccountAIVoiceDto = FindIAccountAIVoiceDto;
|
|
4105
4248
|
type index_FindIAccountAIVoiceInfoDto = FindIAccountAIVoiceInfoDto;
|
|
4106
4249
|
type index_FindIAccountEmailDto = FindIAccountEmailDto;
|
|
4107
4250
|
type index_FindIManagerImageAIDto = FindIManagerImageAIDto;
|
|
@@ -4148,10 +4291,11 @@ type index_FindThreadsSettingInteractReplyCommentDto = FindThreadsSettingInterac
|
|
|
4148
4291
|
type index_FindThreadsSettingPostDto = FindThreadsSettingPostDto;
|
|
4149
4292
|
type index_FindUserDto = FindUserDto;
|
|
4150
4293
|
type index_IBaseDto = IBaseDto;
|
|
4294
|
+
type index_IBaseSheetImportDto = IBaseSheetImportDto;
|
|
4151
4295
|
type index_ImportDto = ImportDto;
|
|
4152
4296
|
type index_OverviewUserDto = OverviewUserDto;
|
|
4153
4297
|
declare namespace index {
|
|
4154
|
-
export { type index_AutoFillAccountRawDto as AutoFillAccountRawDto, type index_ExportDto as ExportDto, type index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, type index_FilterAccountCanvaDto as FilterAccountCanvaDto, type index_FilterAccountDriveDto as FilterAccountDriveDto, type index_FilterAccountDto as FilterAccountDto, type index_FilterAccountRawDto as FilterAccountRawDto, type index_FilterAccountVPNDto as FilterAccountVPNDto, type index_FilterAccountVPSDto as FilterAccountVPSDto, type index_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, type index_FilterAccountsGroupDto as FilterAccountsGroupDto, type index_FilterBaseDto as FilterBaseDto, type index_FilterBlogCategoryDto as FilterBlogCategoryDto, type index_FilterBlogDto as FilterBlogDto, type index_FilterDepartmentDto as FilterDepartmentDto, type index_FilterDeviceDto as FilterDeviceDto, type index_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, type index_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, type index_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, type index_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, type
|
|
4298
|
+
export { type index_AutoFillAccountRawDto as AutoFillAccountRawDto, type index_AutoFillOverviewAccountRawDto as AutoFillOverviewAccountRawDto, type index_ExportDto as ExportDto, type index_FilterAccountAIDto as FilterAccountAIDto, type index_FilterAccountAIImageDto as FilterAccountAIImageDto, type index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, type index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, type index_FilterAccountCanvaDto as FilterAccountCanvaDto, type index_FilterAccountDriveDto as FilterAccountDriveDto, type index_FilterAccountDto as FilterAccountDto, type index_FilterAccountRawDto as FilterAccountRawDto, type index_FilterAccountVPNDto as FilterAccountVPNDto, type index_FilterAccountVPSDto as FilterAccountVPSDto, type index_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, type index_FilterAccountsGroupDto as FilterAccountsGroupDto, type index_FilterBaseDto as FilterBaseDto, type index_FilterBlogCategoryDto as FilterBlogCategoryDto, type index_FilterBlogDto as FilterBlogDto, type index_FilterDepartmentDto as FilterDepartmentDto, type index_FilterDeviceDto as FilterDeviceDto, type index_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, type index_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, type index_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, type index_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, type index_FilterIAccountAIImageInfoDto as FilterIAccountAIImageInfoDto, type index_FilterIAccountAIInfoDto as FilterIAccountAIInfoDto, type index_FilterIAccountAIVoiceInfoDto as FilterIAccountAIVoiceInfoDto, type index_FilterIAccountEmailDto as FilterIAccountEmailDto, type index_FilterIManagerImageAIDto as FilterIManagerImageAIDto, type index_FilterInstagramInteractExploreDto as FilterInstagramInteractExploreDto, type index_FilterInstagramInteractFollowDto as FilterInstagramInteractFollowDto, type index_FilterInstagramInteractReelDto as FilterInstagramInteractReelDto, type index_FilterInstagramInteractReplyCommentDto as FilterInstagramInteractReplyCommentDto, type index_FilterInstagramInteractReplyMessageDto as FilterInstagramInteractReplyMessageDto, type index_FilterInstagramInteractStoryDto as FilterInstagramInteractStoryDto, type index_FilterInstagramPostHighLightDto as FilterInstagramPostHighLightDto, type index_FilterInstagramPostNewDto as FilterInstagramPostNewDto, type index_FilterInstagramPostReelDto as FilterInstagramPostReelDto, type index_FilterInstagramPostStoryDto as FilterInstagramPostStoryDto, type index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, type index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, type index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, type index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, type index_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, type index_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, type index_FilterInstagramSettingStoryDto as FilterInstagramSettingStoryDto, type index_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, type index_FilterLarkDto as FilterLarkDto, type index_FilterManagerSheetDto as FilterManagerSheetDto, type index_FilterManagerWorkDto as FilterManagerWorkDto, type index_FilterPCDto as FilterPCDto, type index_FilterProxyDto as FilterProxyDto, type index_FilterRoleDto as FilterRoleDto, type index_FilterSheetWorkDto as FilterSheetWorkDto, type index_FilterSheetWorkManagerDto as FilterSheetWorkManagerDto, type index_FilterSheetsToolDto as FilterSheetsToolDto, type index_FilterTeamDto as FilterTeamDto, type index_FilterThreadsInteractFollowDto as FilterThreadsInteractFollowDto, type index_FilterThreadsInteractReplyCommentDto as FilterThreadsInteractReplyCommentDto, type index_FilterThreadsPostNewDto as FilterThreadsPostNewDto, type index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, type index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, type index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, type index_FilterUserDto as FilterUserDto, type index_FindAccountAIDto as FindAccountAIDto, type index_FindAccountAIImageDto as FindAccountAIImageDto, type index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, type index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, type index_FindAccountCanvaDto as FindAccountCanvaDto, type index_FindAccountDriveDto as FindAccountDriveDto, type index_FindAccountDto as FindAccountDto, type index_FindAccountRawDto as FindAccountRawDto, type index_FindAccountVPNDto as FindAccountVPNDto, type index_FindAccountVPSDto as FindAccountVPSDto, type index_FindAccountVPSGroupDto as FindAccountVPSGroupDto, type index_FindAccountsGroupDto as FindAccountsGroupDto, type index_FindBlogCategoryDto as FindBlogCategoryDto, type index_FindBlogDto as FindBlogDto, type index_FindDepartmentDto as FindDepartmentDto, type index_FindDeviceDto as FindDeviceDto, type index_FindForReviewDto as FindForReviewDto, type index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, type index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, type index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, type index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, type index_FindIAccountAIImageInfoDto as FindIAccountAIImageInfoDto, type index_FindIAccountAIInfoDto as FindIAccountAIInfoDto, type index_FindIAccountAIVoiceInfoDto as FindIAccountAIVoiceInfoDto, type index_FindIAccountEmailDto as FindIAccountEmailDto, type index_FindIManagerImageAIDto as FindIManagerImageAIDto, type index_FindInstagramInteractExploreDto as FindInstagramInteractExploreDto, type index_FindInstagramInteractFollowDto as FindInstagramInteractFollowDto, type index_FindInstagramInteractReelDto as FindInstagramInteractReelDto, type index_FindInstagramInteractReplyCommentDto as FindInstagramInteractReplyCommentDto, type index_FindInstagramInteractReplyMessageDto as FindInstagramInteractReplyMessageDto, type index_FindInstagramInteractStoryDto as FindInstagramInteractStoryDto, type index_FindInstagramPostHighLightDto as FindInstagramPostHighLightDto, type index_FindInstagramPostNewDto as FindInstagramPostNewDto, type index_FindInstagramPostReelDto as FindInstagramPostReelDto, type index_FindInstagramPostStoryDto as FindInstagramPostStoryDto, type index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, type index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, type index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, type index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, type index_FindInstagramSettingReplyCommentDto as FindInstagramSettingReplyCommentDto, type index_FindInstagramSettingReplyMessageDto as FindInstagramSettingReplyMessageDto, type index_FindInstagramSettingStoryDto as FindInstagramSettingStoryDto, type index_FindInstagramSettingUnFollowDto as FindInstagramSettingUnFollowDto, type index_FindLarkDto as FindLarkDto, type index_FindManagerSheetDto as FindManagerSheetDto, type index_FindManagerWorkDto as FindManagerWorkDto, type index_FindOverViewAccountDto as FindOverViewAccountDto, type index_FindOverViewAccountRowDto as FindOverViewAccountRowDto, type index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, type index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, type index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, type index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, type index_FindOverviewProxyDto as FindOverviewProxyDto, type index_FindPCDto as FindPCDto, type index_FindProxyDto as FindProxyDto, type index_FindRoleDto as FindRoleDto, type index_FindSheetWorkDto as FindSheetWorkDto, type index_FindSheetWorkManagerDto as FindSheetWorkManagerDto, type index_FindSheetsToolDto as FindSheetsToolDto, type index_FindTeamDto as FindTeamDto, type index_FindThreadsInteractFollowDto as FindThreadsInteractFollowDto, type index_FindThreadsInteractReplyCommentDto as FindThreadsInteractReplyCommentDto, type index_FindThreadsPostNewDto as FindThreadsPostNewDto, type index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, type index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, type index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, type index_FindUserDto as FindUserDto, type index_IBaseDto as IBaseDto, type index_IBaseSheetImportDto as IBaseSheetImportDto, type index_ImportDto as ImportDto, type index_OverviewUserDto as OverviewUserDto, index$1 as TaskBrowsers, index$2 as TaskPhones };
|
|
4155
4299
|
}
|
|
4156
4300
|
|
|
4157
|
-
export { index$l as AutoConstants, index as AutoDto, index$e as AutoEnums, index$3 as AutoInterfacesCommon, index$4 as AutoInterfacesModels, index$d as AutoTypes };
|
|
4301
|
+
export { index$b as Auth, index$l as AutoConstants, index as AutoDto, index$e as AutoEnums, index$3 as AutoInterfacesCommon, index$4 as AutoInterfacesModels, index$d as AutoTypes, index$c as Common, index$6 as History, type IAccount, type IAccountAI, type IAccountAIChannel, type IAccountAIGroup, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageTag, type IAccountAIInfo, type IAccountAITag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceTag, type IAccountCHPlayICloud, type IAccountCanva, type IAccountDrive, type IAccountEmail, type IAccountEmailProxy, type IAccountEmailTag, type IAccountEmailTaskWork, type IAccountRaw, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAccountsGroup, type IAuthLogin, type IAuthResetPassword, type IBaseModel, type IBlog, type IBlogCategory, type IBlogPermission, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentRole, type IDevice, type IDeviceSettingForAccount, type IDeviceSettingForCHPlay, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterStore, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIdea, type IInstagramInteractExplore, type IInstagramInteractFollow, type IInstagramInteractReel, type IInstagramInteractReplyComment, type IInstagramInteractReplyMessage, type IInstagramInteractStory, type IInstagramPostHighLight, type IInstagramPostNew, type IInstagramPostReel, type IInstagramPostSquare, type IInstagramPostStory, type IInstagramSettingInteractExplore, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReel, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, type IInstagramSettingInteractStory, type IInstagramSettingInteractUnFollow, type IInstagramSettingPost, type IInteractSentMessageDetail, type ILark, type ILarkTeam, type IManagerImageAI, type IManagerImageAIItemStore, type IManagerImageAIUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type IManagerWorkPin, type INiche, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISheetImport, type ISheetWork, type ISheetWorkManager, type ISheetWorkPin, type ISheetWorksCategory, type ISheetsTool, type ITag, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITeam, type ITeamMember, type ITeamRole, type IThreadsInteractFollow, type IThreadsInteractReplyComment, type IThreadsPostNew, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTimeScript, type ITrackingUserAction, type IUser, type IUserRole, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, index$5 as Socials, index$8 as TaskBrowsers, index$9 as TaskPhones, index$7 as Tool, index$a as Web };
|
package/dist/index.d.ts
CHANGED
|
@@ -973,13 +973,19 @@ interface IFile extends IBaseModel, ITrackingModel<IUser> {
|
|
|
973
973
|
isDraft: boolean;
|
|
974
974
|
}
|
|
975
975
|
|
|
976
|
+
interface ISheetImport extends IBaseModel, ITrackingModel<IUser> {
|
|
977
|
+
sheetUrl: string;
|
|
978
|
+
sheetName: string;
|
|
979
|
+
}
|
|
980
|
+
|
|
976
981
|
type index$c_IBaseModel = IBaseModel;
|
|
977
982
|
type index$c_IFile = IFile;
|
|
983
|
+
type index$c_ISheetImport = ISheetImport;
|
|
978
984
|
type index$c_ITrackingModel<T> = ITrackingModel<T>;
|
|
979
985
|
type index$c_ITrackingTimeScript = ITrackingTimeScript;
|
|
980
986
|
type index$c_ITrackingUserAction = ITrackingUserAction;
|
|
981
987
|
declare namespace index$c {
|
|
982
|
-
export type { index$c_IBaseModel as IBaseModel, index$c_IFile as IFile, index$c_ITrackingModel as ITrackingModel, index$c_ITrackingTimeScript as ITrackingTimeScript, index$c_ITrackingUserAction as ITrackingUserAction };
|
|
988
|
+
export type { index$c_IBaseModel as IBaseModel, index$c_IFile as IFile, index$c_ISheetImport as ISheetImport, index$c_ITrackingModel as ITrackingModel, index$c_ITrackingTimeScript as ITrackingTimeScript, index$c_ITrackingUserAction as ITrackingUserAction };
|
|
983
989
|
}
|
|
984
990
|
|
|
985
991
|
interface IDepartment extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -1184,8 +1190,12 @@ interface IBlog extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1184
1190
|
blog_priority: EPriority;
|
|
1185
1191
|
blog_priorityPoint: number;
|
|
1186
1192
|
blog_category: string | IBlogCategory;
|
|
1187
|
-
|
|
1188
|
-
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
interface IBlogPermission extends IBaseModel, ITrackingModel<IUser> {
|
|
1196
|
+
blog: string | IBlog;
|
|
1197
|
+
typePermission: 'Department' | 'Team' | 'User';
|
|
1198
|
+
refInstanceID: string;
|
|
1189
1199
|
}
|
|
1190
1200
|
|
|
1191
1201
|
interface ITeam extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -1264,9 +1274,17 @@ interface ITaskJob extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1264
1274
|
tj_status: EStatusTaskJob;
|
|
1265
1275
|
tj_priority: EPriority;
|
|
1266
1276
|
tj_priorityPoint: number;
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
interface ITaskJobPermission extends IBaseModel, ITrackingModel<IUser> {
|
|
1280
|
+
taskJob: string | ITaskJob;
|
|
1281
|
+
typePermission: 'Department' | 'Team' | 'User';
|
|
1282
|
+
refInstanceID: string;
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
interface ITaskJobAttachmentBlog extends IBaseModel, ITrackingModel<IUser> {
|
|
1286
|
+
taskJob: string | ITaskJob;
|
|
1287
|
+
blog: string | IBlog;
|
|
1270
1288
|
}
|
|
1271
1289
|
|
|
1272
1290
|
interface ITaskJobBlogAttached extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -1291,6 +1309,7 @@ interface ITaskJobUserPermission extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1291
1309
|
|
|
1292
1310
|
type index$a_IBlog = IBlog;
|
|
1293
1311
|
type index$a_IBlogCategory = IBlogCategory;
|
|
1312
|
+
type index$a_IBlogPermission = IBlogPermission;
|
|
1294
1313
|
type index$a_IDepartment = IDepartment;
|
|
1295
1314
|
type index$a_IDepartmentRole = IDepartmentRole;
|
|
1296
1315
|
type index$a_IDomain = IDomain;
|
|
@@ -1304,11 +1323,13 @@ type index$a_ISheetWorkPin = ISheetWorkPin;
|
|
|
1304
1323
|
type index$a_ISheetWorksCategory = ISheetWorksCategory;
|
|
1305
1324
|
type index$a_ITag = ITag;
|
|
1306
1325
|
type index$a_ITaskJob = ITaskJob;
|
|
1326
|
+
type index$a_ITaskJobAttachmentBlog = ITaskJobAttachmentBlog;
|
|
1307
1327
|
type index$a_ITaskJobBlogAttached = ITaskJobBlogAttached;
|
|
1308
1328
|
type index$a_ITaskJobCheckList = ITaskJobCheckList;
|
|
1309
1329
|
type index$a_ITaskJobDepartmentPermission = ITaskJobDepartmentPermission;
|
|
1310
1330
|
type index$a_ITaskJobDiscuss = ITaskJobDiscuss;
|
|
1311
1331
|
type index$a_ITaskJobLabel = ITaskJobLabel;
|
|
1332
|
+
type index$a_ITaskJobPermission = ITaskJobPermission;
|
|
1312
1333
|
type index$a_ITaskJobTeamPermission = ITaskJobTeamPermission;
|
|
1313
1334
|
type index$a_ITaskJobUserPermission = ITaskJobUserPermission;
|
|
1314
1335
|
type index$a_ITaskJobsGroup = ITaskJobsGroup;
|
|
@@ -1316,7 +1337,7 @@ type index$a_ITeam = ITeam;
|
|
|
1316
1337
|
type index$a_ITeamMember = ITeamMember;
|
|
1317
1338
|
type index$a_ITeamRole = ITeamRole;
|
|
1318
1339
|
declare namespace index$a {
|
|
1319
|
-
export type { index$a_IBlog as IBlog, index$a_IBlogCategory as IBlogCategory, index$a_IDepartment as IDepartment, index$a_IDepartmentRole as IDepartmentRole, index$a_IDomain as IDomain, index$a_ILark as ILark, index$a_ILarkTeam as ILarkTeam, index$a_IManagerWork as IManagerWork, index$a_IManagerWorkPin as IManagerWorkPin, index$a_ISheetWork as ISheetWork, index$a_ISheetWorkManager as ISheetWorkManager, index$a_ISheetWorkPin as ISheetWorkPin, index$a_ISheetWorksCategory as ISheetWorksCategory, index$a_ITag as ITag, index$a_ITaskJob as ITaskJob, index$a_ITaskJobBlogAttached as ITaskJobBlogAttached, index$a_ITaskJobCheckList as ITaskJobCheckList, index$a_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, index$a_ITaskJobDiscuss as ITaskJobDiscuss, index$a_ITaskJobLabel as ITaskJobLabel, index$a_ITaskJobTeamPermission as ITaskJobTeamPermission, index$a_ITaskJobUserPermission as ITaskJobUserPermission, index$a_ITaskJobsGroup as ITaskJobsGroup, index$a_ITeam as ITeam, index$a_ITeamMember as ITeamMember, index$a_ITeamRole as ITeamRole };
|
|
1340
|
+
export type { index$a_IBlog as IBlog, index$a_IBlogCategory as IBlogCategory, index$a_IBlogPermission as IBlogPermission, index$a_IDepartment as IDepartment, index$a_IDepartmentRole as IDepartmentRole, index$a_IDomain as IDomain, index$a_ILark as ILark, index$a_ILarkTeam as ILarkTeam, index$a_IManagerWork as IManagerWork, index$a_IManagerWorkPin as IManagerWorkPin, index$a_ISheetWork as ISheetWork, index$a_ISheetWorkManager as ISheetWorkManager, index$a_ISheetWorkPin as ISheetWorkPin, index$a_ISheetWorksCategory as ISheetWorksCategory, index$a_ITag as ITag, index$a_ITaskJob as ITaskJob, index$a_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, index$a_ITaskJobBlogAttached as ITaskJobBlogAttached, index$a_ITaskJobCheckList as ITaskJobCheckList, index$a_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, index$a_ITaskJobDiscuss as ITaskJobDiscuss, index$a_ITaskJobLabel as ITaskJobLabel, index$a_ITaskJobPermission as ITaskJobPermission, index$a_ITaskJobTeamPermission as ITaskJobTeamPermission, index$a_ITaskJobUserPermission as ITaskJobUserPermission, index$a_ITaskJobsGroup as ITaskJobsGroup, index$a_ITeam as ITeam, index$a_ITeamMember as ITeamMember, index$a_ITeamRole as ITeamRole };
|
|
1320
1341
|
}
|
|
1321
1342
|
|
|
1322
1343
|
interface IAccountAIChannel extends IBaseModel, ITrackingModel<IUser> {
|
|
@@ -1334,6 +1355,10 @@ interface IAccountAIGroup extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1334
1355
|
}
|
|
1335
1356
|
|
|
1336
1357
|
interface IAccountEmail extends IBaseModel, ITrackingModel<IUser> {
|
|
1358
|
+
sheetImport: string | ISheetImport;
|
|
1359
|
+
sheetUrl: string;
|
|
1360
|
+
sheetName: string;
|
|
1361
|
+
rowId: string;
|
|
1337
1362
|
email: string;
|
|
1338
1363
|
emailRecover: string;
|
|
1339
1364
|
password: string;
|
|
@@ -1420,6 +1445,7 @@ interface IManagerImageAI extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1420
1445
|
}
|
|
1421
1446
|
|
|
1422
1447
|
interface IAccountCanva extends IBaseModel, ITrackingUserAction, ITrackingModel<IUser> {
|
|
1448
|
+
sheetImport: string | ISheetImport;
|
|
1423
1449
|
sheetUrl: string;
|
|
1424
1450
|
sheetName: string;
|
|
1425
1451
|
rowId: string;
|
|
@@ -1431,6 +1457,7 @@ interface IAccountCanva extends IBaseModel, ITrackingUserAction, ITrackingModel<
|
|
|
1431
1457
|
}
|
|
1432
1458
|
|
|
1433
1459
|
interface IAccountDrive extends IBaseModel, ITrackingModel<IUser> {
|
|
1460
|
+
sheetImport: string | ISheetImport;
|
|
1434
1461
|
sheetUrl: string;
|
|
1435
1462
|
sheetName: string;
|
|
1436
1463
|
rowId: string;
|
|
@@ -1444,6 +1471,7 @@ interface IAccountDrive extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1444
1471
|
}
|
|
1445
1472
|
|
|
1446
1473
|
interface IProxy extends IBaseModel, ITrackingModel<IUser> {
|
|
1474
|
+
sheetImport: string | ISheetImport;
|
|
1447
1475
|
sheetUrl: string;
|
|
1448
1476
|
sheetName: string;
|
|
1449
1477
|
rowId: string;
|
|
@@ -1486,6 +1514,7 @@ interface IAccountVPS extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1486
1514
|
}
|
|
1487
1515
|
|
|
1488
1516
|
interface IAccountVPN extends IBaseModel, ITrackingModel<IUser> {
|
|
1517
|
+
sheetImport: string | ISheetImport;
|
|
1489
1518
|
sheetUrl: string;
|
|
1490
1519
|
sheetName: string;
|
|
1491
1520
|
rowId: string;
|
|
@@ -1510,6 +1539,7 @@ interface IAccountVPN extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1510
1539
|
}
|
|
1511
1540
|
|
|
1512
1541
|
interface IAccountCHPlayICloud extends IBaseModel, ITrackingModel<IUser> {
|
|
1542
|
+
sheetImport: string | ISheetImport;
|
|
1513
1543
|
sheetUrl: string;
|
|
1514
1544
|
sheetName: string;
|
|
1515
1545
|
rowId: string;
|
|
@@ -1560,9 +1590,11 @@ interface IDevice extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1560
1590
|
interface IAccount extends IBaseModel, ITrackingModel<IUser> {
|
|
1561
1591
|
group: IAccountsGroup | string;
|
|
1562
1592
|
typeSocial: ETypeSocial;
|
|
1593
|
+
sheetImport: string | ISheetImport;
|
|
1563
1594
|
sheetUrl: string;
|
|
1564
1595
|
sheetName: string;
|
|
1565
1596
|
rowId: string;
|
|
1597
|
+
accountID: string;
|
|
1566
1598
|
accountDeviceType: string;
|
|
1567
1599
|
accountDeviceName: string;
|
|
1568
1600
|
idea: string | IManagerWork;
|
|
@@ -1643,9 +1675,11 @@ interface IAccountRaw extends IBaseModel, ITrackingModel<IUser> {
|
|
|
1643
1675
|
accountSocialSync: IAccount;
|
|
1644
1676
|
timeImport: Date;
|
|
1645
1677
|
statusImport: string;
|
|
1678
|
+
sheetImport: string | ISheetImport;
|
|
1646
1679
|
sheetUrl: string;
|
|
1647
1680
|
sheetName: string;
|
|
1648
1681
|
rowId: string;
|
|
1682
|
+
accountID: string;
|
|
1649
1683
|
statusSyncAccount: EStatusSyncAccountSocial;
|
|
1650
1684
|
timeSyncAccount: Date;
|
|
1651
1685
|
accountDeviceType: string;
|
|
@@ -3031,6 +3065,7 @@ type index$4_IAuthResetPassword = IAuthResetPassword;
|
|
|
3031
3065
|
type index$4_IBaseModel = IBaseModel;
|
|
3032
3066
|
type index$4_IBlog = IBlog;
|
|
3033
3067
|
type index$4_IBlogCategory = IBlogCategory;
|
|
3068
|
+
type index$4_IBlogPermission = IBlogPermission;
|
|
3034
3069
|
type index$4_IDepartment = IDepartment;
|
|
3035
3070
|
type index$4_IDepartmentRole = IDepartmentRole;
|
|
3036
3071
|
type index$4_IDevice = IDevice;
|
|
@@ -3085,6 +3120,7 @@ type index$4_IPC = IPC;
|
|
|
3085
3120
|
type index$4_IProxy = IProxy;
|
|
3086
3121
|
type index$4_IRole = IRole;
|
|
3087
3122
|
type index$4_IRoleFeature = IRoleFeature;
|
|
3123
|
+
type index$4_ISheetImport = ISheetImport;
|
|
3088
3124
|
type index$4_ISheetWork = ISheetWork;
|
|
3089
3125
|
type index$4_ISheetWorkManager = ISheetWorkManager;
|
|
3090
3126
|
type index$4_ISheetWorkPin = ISheetWorkPin;
|
|
@@ -3092,11 +3128,13 @@ type index$4_ISheetWorksCategory = ISheetWorksCategory;
|
|
|
3092
3128
|
type index$4_ISheetsTool = ISheetsTool;
|
|
3093
3129
|
type index$4_ITag = ITag;
|
|
3094
3130
|
type index$4_ITaskJob = ITaskJob;
|
|
3131
|
+
type index$4_ITaskJobAttachmentBlog = ITaskJobAttachmentBlog;
|
|
3095
3132
|
type index$4_ITaskJobBlogAttached = ITaskJobBlogAttached;
|
|
3096
3133
|
type index$4_ITaskJobCheckList = ITaskJobCheckList;
|
|
3097
3134
|
type index$4_ITaskJobDepartmentPermission = ITaskJobDepartmentPermission;
|
|
3098
3135
|
type index$4_ITaskJobDiscuss = ITaskJobDiscuss;
|
|
3099
3136
|
type index$4_ITaskJobLabel = ITaskJobLabel;
|
|
3137
|
+
type index$4_ITaskJobPermission = ITaskJobPermission;
|
|
3100
3138
|
type index$4_ITaskJobTeamPermission = ITaskJobTeamPermission;
|
|
3101
3139
|
type index$4_ITaskJobUserPermission = ITaskJobUserPermission;
|
|
3102
3140
|
type index$4_ITaskJobsGroup = ITaskJobsGroup;
|
|
@@ -3120,7 +3158,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
3120
3158
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
3121
3159
|
type index$4_IVoiceStores = IVoiceStores;
|
|
3122
3160
|
declare namespace index$4 {
|
|
3123
|
-
export { index$b as Auth, index$c as Common, index$6 as History, type index$4_IAccount as IAccount, type index$4_IAccountAI as IAccountAI, type index$4_IAccountAIChannel as IAccountAIChannel, type index$4_IAccountAIGroup as IAccountAIGroup, type index$4_IAccountAIImage as IAccountAIImage, type index$4_IAccountAIImageChannel as IAccountAIImageChannel, type index$4_IAccountAIImageGroup as IAccountAIImageGroup, type index$4_IAccountAIImageInfo as IAccountAIImageInfo, type index$4_IAccountAIImageTag as IAccountAIImageTag, type index$4_IAccountAIInfo as IAccountAIInfo, type index$4_IAccountAITag as IAccountAITag, type index$4_IAccountAIVoice as IAccountAIVoice, type index$4_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$4_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$4_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$4_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$4_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$4_IAccountCanva as IAccountCanva, type index$4_IAccountDrive as IAccountDrive, type index$4_IAccountEmail as IAccountEmail, type index$4_IAccountEmailProxy as IAccountEmailProxy, type index$4_IAccountEmailTag as IAccountEmailTag, type index$4_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$4_IAccountRaw as IAccountRaw, type index$4_IAccountVPN as IAccountVPN, type index$4_IAccountVPS as IAccountVPS, type index$4_IAccountVPSGroup as IAccountVPSGroup, type index$4_IAccountsGroup as IAccountsGroup, type index$4_IAuthLogin as IAuthLogin, type index$4_IAuthResetPassword as IAuthResetPassword, type index$4_IBaseModel as IBaseModel, type index$4_IBlog as IBlog, type index$4_IBlogCategory as IBlogCategory, type index$4_IDepartment as IDepartment, type index$4_IDepartmentRole as IDepartmentRole, type index$4_IDevice as IDevice, type index$4_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$4_IDeviceSettingForCHPlay as IDeviceSettingForCHPlay, type index$4_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$4_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$4_IDomain as IDomain, type index$4_IFile as IFile, type index$4_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$4_IHistoryTaskAIImage as IHistoryTaskAIImage, type index$4_IHistoryTaskAIVoice as IHistoryTaskAIVoice, type index$4_IHistoryTaskCanva as IHistoryTaskCanva, type index$4_IIdea as IIdea, type index$4_IInstagramInteractExplore as IInstagramInteractExplore, type index$4_IInstagramInteractFollow as IInstagramInteractFollow, type index$4_IInstagramInteractReel as IInstagramInteractReel, type index$4_IInstagramInteractReplyComment as IInstagramInteractReplyComment, type index$4_IInstagramInteractReplyMessage as IInstagramInteractReplyMessage, type index$4_IInstagramInteractStory as IInstagramInteractStory, type index$4_IInstagramPostHighLight as IInstagramPostHighLight, type index$4_IInstagramPostNew as IInstagramPostNew, type index$4_IInstagramPostReel as IInstagramPostReel, type index$4_IInstagramPostSquare as IInstagramPostSquare, type index$4_IInstagramPostStory as IInstagramPostStory, type index$4_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$4_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$4_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$4_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$4_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$4_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$4_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$4_IInstagramSettingPost as IInstagramSettingPost, type index$4_IInteractSentMessageDetail as IInteractSentMessageDetail, type index$4_ILark as ILark, type index$4_ILarkTeam as ILarkTeam, type index$4_IManagerImageAI as IManagerImageAI, type index$4_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$4_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$4_IManagerSheet as IManagerSheet, type index$4_IManagerSheetChildren as IManagerSheetChildren, type index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$4_IManagerSheetGroup as IManagerSheetGroup, type index$4_IManagerWork as IManagerWork, type index$4_IManagerWorkPin as IManagerWorkPin, type index$4_INiche as INiche, type index$4_IOtpConfirm as IOtpConfirm, type index$4_IOtpCreateSession as IOtpCreateSession, type index$4_IOtpSend as IOtpSend, type index$4_IPC as IPC, type index$4_IProxy as IProxy, type index$4_IRole as IRole, type index$4_IRoleFeature as IRoleFeature, type index$4_ISheetWork as ISheetWork, type index$4_ISheetWorkManager as ISheetWorkManager, type index$4_ISheetWorkPin as ISheetWorkPin, type index$4_ISheetWorksCategory as ISheetWorksCategory, type index$4_ISheetsTool as ISheetsTool, type index$4_ITag as ITag, type index$4_ITaskJob as ITaskJob, type index$4_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$4_ITaskJobCheckList as ITaskJobCheckList, type index$4_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$4_ITaskJobDiscuss as ITaskJobDiscuss, type index$4_ITaskJobLabel as ITaskJobLabel, type index$4_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$4_ITaskJobUserPermission as ITaskJobUserPermission, type index$4_ITaskJobsGroup as ITaskJobsGroup, type index$4_ITeam as ITeam, type index$4_ITeamMember as ITeamMember, type index$4_ITeamRole as ITeamRole, type index$4_IThreadsInteractFollow as IThreadsInteractFollow, type index$4_IThreadsInteractReplyComment as IThreadsInteractReplyComment, type index$4_IThreadsPostNew as IThreadsPostNew, type index$4_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$4_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$4_IThreadsSettingPost as IThreadsSettingPost, type index$4_IToken as IToken, type index$4_ITrackingModel as ITrackingModel, type index$4_ITrackingTimeScript as ITrackingTimeScript, type index$4_ITrackingUserAction as ITrackingUserAction, type index$4_IUser as IUser, type index$4_IUserRole as IUserRole, type index$4_IVoiceGenerated as IVoiceGenerated, type index$4_IVoiceLanguage as IVoiceLanguage, type index$4_IVoiceSettingDelay as IVoiceSettingDelay, type index$4_IVoiceStores as IVoiceStores, index$5 as Socials, index$8 as TaskBrowsers, index$9 as TaskPhones, index$7 as Tool, index$a as Web };
|
|
3161
|
+
export { index$b as Auth, index$c as Common, index$6 as History, type index$4_IAccount as IAccount, type index$4_IAccountAI as IAccountAI, type index$4_IAccountAIChannel as IAccountAIChannel, type index$4_IAccountAIGroup as IAccountAIGroup, type index$4_IAccountAIImage as IAccountAIImage, type index$4_IAccountAIImageChannel as IAccountAIImageChannel, type index$4_IAccountAIImageGroup as IAccountAIImageGroup, type index$4_IAccountAIImageInfo as IAccountAIImageInfo, type index$4_IAccountAIImageTag as IAccountAIImageTag, type index$4_IAccountAIInfo as IAccountAIInfo, type index$4_IAccountAITag as IAccountAITag, type index$4_IAccountAIVoice as IAccountAIVoice, type index$4_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$4_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$4_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$4_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$4_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$4_IAccountCanva as IAccountCanva, type index$4_IAccountDrive as IAccountDrive, type index$4_IAccountEmail as IAccountEmail, type index$4_IAccountEmailProxy as IAccountEmailProxy, type index$4_IAccountEmailTag as IAccountEmailTag, type index$4_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$4_IAccountRaw as IAccountRaw, type index$4_IAccountVPN as IAccountVPN, type index$4_IAccountVPS as IAccountVPS, type index$4_IAccountVPSGroup as IAccountVPSGroup, type index$4_IAccountsGroup as IAccountsGroup, type index$4_IAuthLogin as IAuthLogin, type index$4_IAuthResetPassword as IAuthResetPassword, type index$4_IBaseModel as IBaseModel, type index$4_IBlog as IBlog, type index$4_IBlogCategory as IBlogCategory, type index$4_IBlogPermission as IBlogPermission, type index$4_IDepartment as IDepartment, type index$4_IDepartmentRole as IDepartmentRole, type index$4_IDevice as IDevice, type index$4_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$4_IDeviceSettingForCHPlay as IDeviceSettingForCHPlay, type index$4_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$4_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$4_IDomain as IDomain, type index$4_IFile as IFile, type index$4_IHistoryTaskAIContent as IHistoryTaskAIContent, type index$4_IHistoryTaskAIImage as IHistoryTaskAIImage, type index$4_IHistoryTaskAIVoice as IHistoryTaskAIVoice, type index$4_IHistoryTaskCanva as IHistoryTaskCanva, type index$4_IIdea as IIdea, type index$4_IInstagramInteractExplore as IInstagramInteractExplore, type index$4_IInstagramInteractFollow as IInstagramInteractFollow, type index$4_IInstagramInteractReel as IInstagramInteractReel, type index$4_IInstagramInteractReplyComment as IInstagramInteractReplyComment, type index$4_IInstagramInteractReplyMessage as IInstagramInteractReplyMessage, type index$4_IInstagramInteractStory as IInstagramInteractStory, type index$4_IInstagramPostHighLight as IInstagramPostHighLight, type index$4_IInstagramPostNew as IInstagramPostNew, type index$4_IInstagramPostReel as IInstagramPostReel, type index$4_IInstagramPostSquare as IInstagramPostSquare, type index$4_IInstagramPostStory as IInstagramPostStory, type index$4_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$4_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$4_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$4_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$4_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$4_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$4_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$4_IInstagramSettingPost as IInstagramSettingPost, type index$4_IInteractSentMessageDetail as IInteractSentMessageDetail, type index$4_ILark as ILark, type index$4_ILarkTeam as ILarkTeam, type index$4_IManagerImageAI as IManagerImageAI, type index$4_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$4_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$4_IManagerSheet as IManagerSheet, type index$4_IManagerSheetChildren as IManagerSheetChildren, type index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$4_IManagerSheetGroup as IManagerSheetGroup, type index$4_IManagerWork as IManagerWork, type index$4_IManagerWorkPin as IManagerWorkPin, type index$4_INiche as INiche, type index$4_IOtpConfirm as IOtpConfirm, type index$4_IOtpCreateSession as IOtpCreateSession, type index$4_IOtpSend as IOtpSend, type index$4_IPC as IPC, type index$4_IProxy as IProxy, type index$4_IRole as IRole, type index$4_IRoleFeature as IRoleFeature, type index$4_ISheetImport as ISheetImport, type index$4_ISheetWork as ISheetWork, type index$4_ISheetWorkManager as ISheetWorkManager, type index$4_ISheetWorkPin as ISheetWorkPin, type index$4_ISheetWorksCategory as ISheetWorksCategory, type index$4_ISheetsTool as ISheetsTool, type index$4_ITag as ITag, type index$4_ITaskJob as ITaskJob, type index$4_ITaskJobAttachmentBlog as ITaskJobAttachmentBlog, type index$4_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$4_ITaskJobCheckList as ITaskJobCheckList, type index$4_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$4_ITaskJobDiscuss as ITaskJobDiscuss, type index$4_ITaskJobLabel as ITaskJobLabel, type index$4_ITaskJobPermission as ITaskJobPermission, type index$4_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$4_ITaskJobUserPermission as ITaskJobUserPermission, type index$4_ITaskJobsGroup as ITaskJobsGroup, type index$4_ITeam as ITeam, type index$4_ITeamMember as ITeamMember, type index$4_ITeamRole as ITeamRole, type index$4_IThreadsInteractFollow as IThreadsInteractFollow, type index$4_IThreadsInteractReplyComment as IThreadsInteractReplyComment, type index$4_IThreadsPostNew as IThreadsPostNew, type index$4_IThreadsSettingInteractFollow as IThreadsSettingInteractFollow, type index$4_IThreadsSettingInteractReplyComment as IThreadsSettingInteractReplyComment, type index$4_IThreadsSettingPost as IThreadsSettingPost, type index$4_IToken as IToken, type index$4_ITrackingModel as ITrackingModel, type index$4_ITrackingTimeScript as ITrackingTimeScript, type index$4_ITrackingUserAction as ITrackingUserAction, type index$4_IUser as IUser, type index$4_IUserRole as IUserRole, type index$4_IVoiceGenerated as IVoiceGenerated, type index$4_IVoiceLanguage as IVoiceLanguage, type index$4_IVoiceSettingDelay as IVoiceSettingDelay, type index$4_IVoiceStores as IVoiceStores, index$5 as Socials, index$8 as TaskBrowsers, index$9 as TaskPhones, index$7 as Tool, index$a as Web };
|
|
3124
3162
|
}
|
|
3125
3163
|
|
|
3126
3164
|
interface IDataUser {
|
|
@@ -3177,8 +3215,12 @@ declare namespace index$3 {
|
|
|
3177
3215
|
}
|
|
3178
3216
|
|
|
3179
3217
|
interface IBaseDto {
|
|
3180
|
-
|
|
3181
|
-
|
|
3218
|
+
teamName: string;
|
|
3219
|
+
departmentName: string;
|
|
3220
|
+
}
|
|
3221
|
+
interface IBaseSheetImportDto {
|
|
3222
|
+
sheetUrl: string;
|
|
3223
|
+
sheetName: string;
|
|
3182
3224
|
}
|
|
3183
3225
|
|
|
3184
3226
|
interface FindUserDto extends IBaseDto, IUser {
|
|
@@ -3362,23 +3404,69 @@ interface FilterInstagramSettingPostDto extends IBaseDto, IInstagramSettingPost
|
|
|
3362
3404
|
}
|
|
3363
3405
|
|
|
3364
3406
|
interface FindManagerSheetDto extends IBaseDto, IManagerSheet {
|
|
3407
|
+
listSheetChildren: Array<{
|
|
3408
|
+
idea: IManagerWork;
|
|
3409
|
+
niche: IManagerWork[];
|
|
3410
|
+
department: IDepartment;
|
|
3411
|
+
managerSheetChildren: IManagerSheetChildren;
|
|
3412
|
+
managerSheetChildrenGroupItem: Array<{
|
|
3413
|
+
group: IManagerSheetChildrenGroup;
|
|
3414
|
+
groupItems: Array<IManagerSheetChildrenGroupItem>;
|
|
3415
|
+
}>;
|
|
3416
|
+
}>;
|
|
3365
3417
|
}
|
|
3366
3418
|
interface FilterManagerSheetDto extends IBaseDto, IManagerSheet {
|
|
3367
3419
|
}
|
|
3368
3420
|
|
|
3369
3421
|
interface FindIManagerImageAIDto extends IBaseDto, IManagerImageAI {
|
|
3422
|
+
userWork: IUser;
|
|
3423
|
+
departmentWork: IDepartment;
|
|
3424
|
+
sheetWorks: ISheetWork[];
|
|
3425
|
+
classify: ETypeManagerWorkClassify;
|
|
3426
|
+
accountsAttached: IManagerImageAIUserAttached[];
|
|
3427
|
+
recordManagerImageAI: Record<keyof typeof EFolderImageAI, {
|
|
3428
|
+
numberImages: number;
|
|
3429
|
+
images: IManagerImageAIItemStore[];
|
|
3430
|
+
}>;
|
|
3431
|
+
}
|
|
3432
|
+
interface FindForReviewDto {
|
|
3433
|
+
classify: string;
|
|
3434
|
+
userWork: IUser;
|
|
3435
|
+
departmentWork: IDepartment;
|
|
3436
|
+
sheetWorks: ISheetWork[];
|
|
3370
3437
|
}
|
|
3371
3438
|
interface FilterIManagerImageAIDto extends IBaseDto, IManagerImageAI {
|
|
3372
3439
|
}
|
|
3373
3440
|
|
|
3374
3441
|
interface FindIAccountEmailDto extends IBaseDto, IAccountEmail {
|
|
3442
|
+
provider: string;
|
|
3443
|
+
listProxy: IProxy[];
|
|
3444
|
+
tagWorks?: {
|
|
3445
|
+
idea: IManagerWork;
|
|
3446
|
+
niches: IManagerWork[];
|
|
3447
|
+
}[];
|
|
3448
|
+
tagsContent: IAccountEmailTag[];
|
|
3449
|
+
tagsImage: IAccountEmailTag[];
|
|
3450
|
+
tagsVoice: IAccountEmailTag[];
|
|
3451
|
+
listAISynchronized: EEmailTagType[];
|
|
3452
|
+
listTypeTags: EEmailTagType[];
|
|
3453
|
+
dataStoreGPT: {
|
|
3454
|
+
password: string;
|
|
3455
|
+
code2FA: string;
|
|
3456
|
+
};
|
|
3375
3457
|
}
|
|
3376
3458
|
interface FilterIAccountEmailDto extends IBaseDto, IAccountEmail {
|
|
3377
3459
|
}
|
|
3378
3460
|
|
|
3379
|
-
interface
|
|
3461
|
+
interface FindAccountAIVoiceDto extends IBaseDto, IAccountAIVoice {
|
|
3462
|
+
sheetWorksGroup: ISheetWorksCategory[];
|
|
3463
|
+
classifyManagerWork: ETypeManagerWorkClassify;
|
|
3464
|
+
listAccountInfoChannels: Array<{
|
|
3465
|
+
accountInfo: IAccountAIVoiceInfo;
|
|
3466
|
+
listChannels: IAccountAIVoiceChannel[];
|
|
3467
|
+
}>;
|
|
3380
3468
|
}
|
|
3381
|
-
interface
|
|
3469
|
+
interface FilterAccountAIVoiceDto extends IBaseDto, IAccountAIVoice {
|
|
3382
3470
|
}
|
|
3383
3471
|
|
|
3384
3472
|
interface FindIAccountAIVoiceInfoDto extends IBaseDto, IAccountAIVoiceInfo {
|
|
@@ -3386,9 +3474,15 @@ interface FindIAccountAIVoiceInfoDto extends IBaseDto, IAccountAIVoiceInfo {
|
|
|
3386
3474
|
interface FilterIAccountAIVoiceInfoDto extends IBaseDto, IAccountAIVoiceInfo {
|
|
3387
3475
|
}
|
|
3388
3476
|
|
|
3389
|
-
interface
|
|
3477
|
+
interface FindAccountAIImageDto extends IBaseDto, IAccountAIImage {
|
|
3478
|
+
sheetWorksGroup: ISheetWorksCategory[];
|
|
3479
|
+
classifyManagerWork: ETypeManagerWorkClassify;
|
|
3480
|
+
listAccountInfoChannels: Array<{
|
|
3481
|
+
accountInfo: IAccountAIImageInfo;
|
|
3482
|
+
listChannels: IAccountAIImageChannel[];
|
|
3483
|
+
}>;
|
|
3390
3484
|
}
|
|
3391
|
-
interface
|
|
3485
|
+
interface FilterAccountAIImageDto extends IBaseDto, IAccountAIImage {
|
|
3392
3486
|
}
|
|
3393
3487
|
|
|
3394
3488
|
interface FindIAccountAIImageInfoDto extends IBaseDto, IAccountAIImageInfo {
|
|
@@ -3396,9 +3490,15 @@ interface FindIAccountAIImageInfoDto extends IBaseDto, IAccountAIImageInfo {
|
|
|
3396
3490
|
interface FilterIAccountAIImageInfoDto extends IBaseDto, IAccountAIImageInfo {
|
|
3397
3491
|
}
|
|
3398
3492
|
|
|
3399
|
-
interface
|
|
3493
|
+
interface FindAccountAIDto extends IBaseDto, IAccountAI {
|
|
3494
|
+
sheetWorksGroup: ISheetWorksCategory[];
|
|
3495
|
+
classifyManagerWork: ETypeManagerWorkClassify;
|
|
3496
|
+
listAccountInfoChannels: Array<{
|
|
3497
|
+
accountInfo: IAccountAIInfo;
|
|
3498
|
+
listChannels: IAccountAIChannel[];
|
|
3499
|
+
}>;
|
|
3400
3500
|
}
|
|
3401
|
-
interface
|
|
3501
|
+
interface FilterAccountAIDto extends IBaseDto, IAccountAI {
|
|
3402
3502
|
}
|
|
3403
3503
|
|
|
3404
3504
|
interface FindIAccountAIInfoDto extends IBaseDto, IAccountAIInfo {
|
|
@@ -3435,10 +3535,10 @@ interface FindOverviewAccountCanvaDto {
|
|
|
3435
3535
|
};
|
|
3436
3536
|
}
|
|
3437
3537
|
|
|
3438
|
-
interface FindAccountDriveDto extends IBaseDto, IAccountDrive {
|
|
3439
|
-
}
|
|
3440
3538
|
interface FilterAccountDriveDto extends IBaseDto, IAccountDrive {
|
|
3441
3539
|
}
|
|
3540
|
+
interface FindAccountDriveDto extends IBaseDto, IAccountDrive {
|
|
3541
|
+
}
|
|
3442
3542
|
interface FindOverviewAccountDriveDto {
|
|
3443
3543
|
totalAccounts: {
|
|
3444
3544
|
total: string;
|
|
@@ -3464,8 +3564,6 @@ interface FindOverviewAccountDriveDto {
|
|
|
3464
3564
|
};
|
|
3465
3565
|
}
|
|
3466
3566
|
|
|
3467
|
-
interface FindProxyDto extends IBaseDto, IProxy {
|
|
3468
|
-
}
|
|
3469
3567
|
interface FilterProxyDto extends IBaseDto, IProxy {
|
|
3470
3568
|
}
|
|
3471
3569
|
interface FindOverviewProxyDto {
|
|
@@ -3489,6 +3587,12 @@ interface FindOverviewProxyDto {
|
|
|
3489
3587
|
ios: number;
|
|
3490
3588
|
};
|
|
3491
3589
|
}
|
|
3590
|
+
interface FindProxyDto extends IBaseDto, IProxy {
|
|
3591
|
+
listDeviceKeys: string[];
|
|
3592
|
+
listDeviceName: string[];
|
|
3593
|
+
listDeviceOS: string[];
|
|
3594
|
+
ipRunCountDevice: number;
|
|
3595
|
+
}
|
|
3492
3596
|
|
|
3493
3597
|
interface FindAccountVPSDto extends IBaseDto, IAccountVPS {
|
|
3494
3598
|
}
|
|
@@ -3500,10 +3604,15 @@ interface FindAccountVPSGroupDto extends IBaseDto, IAccountVPSGroup {
|
|
|
3500
3604
|
interface FilterAccountVPSGroupDto extends IBaseDto, IAccountVPSGroup {
|
|
3501
3605
|
}
|
|
3502
3606
|
|
|
3503
|
-
interface FindAccountVPNDto extends IBaseDto, IAccountVPN {
|
|
3504
|
-
}
|
|
3505
3607
|
interface FilterAccountVPNDto extends IBaseDto, IAccountVPN {
|
|
3506
3608
|
}
|
|
3609
|
+
interface FindAccountVPNDto extends IBaseDto, IAccountVPN {
|
|
3610
|
+
pcName: string;
|
|
3611
|
+
listDeviceKey: string[];
|
|
3612
|
+
listDeviceName: string[];
|
|
3613
|
+
listDeviceOS: ETypeDeviceOS[];
|
|
3614
|
+
numberRunOnDevice: number;
|
|
3615
|
+
}
|
|
3507
3616
|
interface FindOverviewAccountVPNDto {
|
|
3508
3617
|
totalAccounts: {
|
|
3509
3618
|
total: string;
|
|
@@ -3543,10 +3652,10 @@ interface FindOverviewAccountVPNDto {
|
|
|
3543
3652
|
};
|
|
3544
3653
|
}
|
|
3545
3654
|
|
|
3546
|
-
interface FindAccountCHPlayICloudDto extends IBaseDto, IAccountCHPlayICloud {
|
|
3547
|
-
}
|
|
3548
3655
|
interface FilterAccountCHPlayICloudDto extends IBaseDto, IAccountCHPlayICloud {
|
|
3549
3656
|
}
|
|
3657
|
+
interface FindAccountCHPlayICloudDto extends IBaseDto, IAccountCHPlayICloud {
|
|
3658
|
+
}
|
|
3550
3659
|
interface FindOverviewAccountCHPlayICloudDto {
|
|
3551
3660
|
totalAccounts: {
|
|
3552
3661
|
total: string;
|
|
@@ -3717,23 +3826,45 @@ interface FindAccountRawDto extends IBaseDto, IAccountRaw {
|
|
|
3717
3826
|
time: Date;
|
|
3718
3827
|
};
|
|
3719
3828
|
}
|
|
3720
|
-
interface
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
|
|
3732
|
-
|
|
3733
|
-
|
|
3734
|
-
|
|
3829
|
+
interface AutoFillOverviewAccountRawDto {
|
|
3830
|
+
idea: {
|
|
3831
|
+
colName: string;
|
|
3832
|
+
colSymbol: string;
|
|
3833
|
+
listValsOnCol: string[];
|
|
3834
|
+
};
|
|
3835
|
+
niche: {
|
|
3836
|
+
colName: string;
|
|
3837
|
+
colSymbol: string;
|
|
3838
|
+
listValsOnCol: string[];
|
|
3839
|
+
};
|
|
3840
|
+
accountID: {
|
|
3841
|
+
colName: string;
|
|
3842
|
+
colSymbol: string;
|
|
3843
|
+
listValsOnCol: string[];
|
|
3844
|
+
};
|
|
3845
|
+
oldUsername: {
|
|
3846
|
+
colName: string;
|
|
3847
|
+
colSymbol: string;
|
|
3848
|
+
listValsOnCol: string[];
|
|
3849
|
+
};
|
|
3735
3850
|
}
|
|
3736
|
-
interface AutoFillAccountRawDto
|
|
3851
|
+
interface AutoFillAccountRawDto {
|
|
3852
|
+
idea: {
|
|
3853
|
+
id: string;
|
|
3854
|
+
name: string;
|
|
3855
|
+
};
|
|
3856
|
+
niche: {
|
|
3857
|
+
id: string;
|
|
3858
|
+
name: string;
|
|
3859
|
+
};
|
|
3860
|
+
accountId: {
|
|
3861
|
+
id: string;
|
|
3862
|
+
val: string;
|
|
3863
|
+
};
|
|
3864
|
+
oldUsername: {
|
|
3865
|
+
id: string;
|
|
3866
|
+
name: string;
|
|
3867
|
+
};
|
|
3737
3868
|
newUsername: string;
|
|
3738
3869
|
newFullname: string;
|
|
3739
3870
|
timeExecuteChangeInfo: Date;
|
|
@@ -3742,6 +3873,7 @@ interface AutoFillAccountRawDto extends IBaseDto, IAccountRaw {
|
|
|
3742
3873
|
newPassword: string;
|
|
3743
3874
|
timeExecutePassword: Date;
|
|
3744
3875
|
new2FA: string;
|
|
3876
|
+
isTurnOn2FA: boolean;
|
|
3745
3877
|
timeExecute2FA: Date;
|
|
3746
3878
|
newEmail: string;
|
|
3747
3879
|
timeExecuteEmail: Date;
|
|
@@ -3948,6 +4080,15 @@ declare namespace index$2 {
|
|
|
3948
4080
|
}
|
|
3949
4081
|
|
|
3950
4082
|
interface FindTaskAIContentDto extends IBaseDto, ITaskAIContent {
|
|
4083
|
+
keyWords: string;
|
|
4084
|
+
keyWordsBlank: string;
|
|
4085
|
+
promptInput: string;
|
|
4086
|
+
groupNameRun: string;
|
|
4087
|
+
columnType: ETypeColumnManagerWork;
|
|
4088
|
+
managerSheet: IManagerSheet;
|
|
4089
|
+
managerSheetChildren: IManagerSheetChildren;
|
|
4090
|
+
accountInfo: IAccountAIInfo;
|
|
4091
|
+
accountChannel: IAccountAIChannel;
|
|
3951
4092
|
}
|
|
3952
4093
|
interface FilterTaskAIContentDto extends IBaseDto, ITaskAIContent {
|
|
3953
4094
|
}
|
|
@@ -4001,8 +4142,8 @@ interface FilterBlogCategoryDto extends IBaseDto, IBlogCategory {
|
|
|
4001
4142
|
}
|
|
4002
4143
|
|
|
4003
4144
|
interface FindLarkDto extends IBaseDto, ILark {
|
|
4004
|
-
|
|
4005
|
-
|
|
4145
|
+
teamNamesAssignments: string[];
|
|
4146
|
+
userNamesAssignments: string[];
|
|
4006
4147
|
}
|
|
4007
4148
|
interface FilterLarkDto extends IBaseDto, ILark {
|
|
4008
4149
|
}
|
|
@@ -4018,7 +4159,11 @@ interface FilterDepartmentDto extends IBaseDto, IDepartment {
|
|
|
4018
4159
|
}
|
|
4019
4160
|
|
|
4020
4161
|
type index_AutoFillAccountRawDto = AutoFillAccountRawDto;
|
|
4162
|
+
type index_AutoFillOverviewAccountRawDto = AutoFillOverviewAccountRawDto;
|
|
4021
4163
|
type index_ExportDto = ExportDto;
|
|
4164
|
+
type index_FilterAccountAIDto = FilterAccountAIDto;
|
|
4165
|
+
type index_FilterAccountAIImageDto = FilterAccountAIImageDto;
|
|
4166
|
+
type index_FilterAccountAIVoiceDto = FilterAccountAIVoiceDto;
|
|
4022
4167
|
type index_FilterAccountCHPlayICloudDto = FilterAccountCHPlayICloudDto;
|
|
4023
4168
|
type index_FilterAccountCanvaDto = FilterAccountCanvaDto;
|
|
4024
4169
|
type index_FilterAccountDriveDto = FilterAccountDriveDto;
|
|
@@ -4037,11 +4182,8 @@ type index_FilterHistoryTaskAIContentDto = FilterHistoryTaskAIContentDto;
|
|
|
4037
4182
|
type index_FilterHistoryTaskAIImageDto = FilterHistoryTaskAIImageDto;
|
|
4038
4183
|
type index_FilterHistoryTaskAIVoiceDto = FilterHistoryTaskAIVoiceDto;
|
|
4039
4184
|
type index_FilterHistoryTaskCanvaDto = FilterHistoryTaskCanvaDto;
|
|
4040
|
-
type index_FilterIAccountAIDto = FilterIAccountAIDto;
|
|
4041
|
-
type index_FilterIAccountAIImageDto = FilterIAccountAIImageDto;
|
|
4042
4185
|
type index_FilterIAccountAIImageInfoDto = FilterIAccountAIImageInfoDto;
|
|
4043
4186
|
type index_FilterIAccountAIInfoDto = FilterIAccountAIInfoDto;
|
|
4044
|
-
type index_FilterIAccountAIVoiceDto = FilterIAccountAIVoiceDto;
|
|
4045
4187
|
type index_FilterIAccountAIVoiceInfoDto = FilterIAccountAIVoiceInfoDto;
|
|
4046
4188
|
type index_FilterIAccountEmailDto = FilterIAccountEmailDto;
|
|
4047
4189
|
type index_FilterIManagerImageAIDto = FilterIManagerImageAIDto;
|
|
@@ -4080,6 +4222,9 @@ type index_FilterThreadsSettingInteractFollowDto = FilterThreadsSettingInteractF
|
|
|
4080
4222
|
type index_FilterThreadsSettingInteractReplyCommentDto = FilterThreadsSettingInteractReplyCommentDto;
|
|
4081
4223
|
type index_FilterThreadsSettingPostDto = FilterThreadsSettingPostDto;
|
|
4082
4224
|
type index_FilterUserDto = FilterUserDto;
|
|
4225
|
+
type index_FindAccountAIDto = FindAccountAIDto;
|
|
4226
|
+
type index_FindAccountAIImageDto = FindAccountAIImageDto;
|
|
4227
|
+
type index_FindAccountAIVoiceDto = FindAccountAIVoiceDto;
|
|
4083
4228
|
type index_FindAccountCHPlayICloudDto = FindAccountCHPlayICloudDto;
|
|
4084
4229
|
type index_FindAccountCanvaDto = FindAccountCanvaDto;
|
|
4085
4230
|
type index_FindAccountDriveDto = FindAccountDriveDto;
|
|
@@ -4093,15 +4238,13 @@ type index_FindBlogCategoryDto = FindBlogCategoryDto;
|
|
|
4093
4238
|
type index_FindBlogDto = FindBlogDto;
|
|
4094
4239
|
type index_FindDepartmentDto = FindDepartmentDto;
|
|
4095
4240
|
type index_FindDeviceDto = FindDeviceDto;
|
|
4241
|
+
type index_FindForReviewDto = FindForReviewDto;
|
|
4096
4242
|
type index_FindHistoryTaskAIContentDto = FindHistoryTaskAIContentDto;
|
|
4097
4243
|
type index_FindHistoryTaskAIImageDto = FindHistoryTaskAIImageDto;
|
|
4098
4244
|
type index_FindHistoryTaskAIVoiceDto = FindHistoryTaskAIVoiceDto;
|
|
4099
4245
|
type index_FindHistoryTaskCanvaDto = FindHistoryTaskCanvaDto;
|
|
4100
|
-
type index_FindIAccountAIDto = FindIAccountAIDto;
|
|
4101
|
-
type index_FindIAccountAIImageDto = FindIAccountAIImageDto;
|
|
4102
4246
|
type index_FindIAccountAIImageInfoDto = FindIAccountAIImageInfoDto;
|
|
4103
4247
|
type index_FindIAccountAIInfoDto = FindIAccountAIInfoDto;
|
|
4104
|
-
type index_FindIAccountAIVoiceDto = FindIAccountAIVoiceDto;
|
|
4105
4248
|
type index_FindIAccountAIVoiceInfoDto = FindIAccountAIVoiceInfoDto;
|
|
4106
4249
|
type index_FindIAccountEmailDto = FindIAccountEmailDto;
|
|
4107
4250
|
type index_FindIManagerImageAIDto = FindIManagerImageAIDto;
|
|
@@ -4148,10 +4291,11 @@ type index_FindThreadsSettingInteractReplyCommentDto = FindThreadsSettingInterac
|
|
|
4148
4291
|
type index_FindThreadsSettingPostDto = FindThreadsSettingPostDto;
|
|
4149
4292
|
type index_FindUserDto = FindUserDto;
|
|
4150
4293
|
type index_IBaseDto = IBaseDto;
|
|
4294
|
+
type index_IBaseSheetImportDto = IBaseSheetImportDto;
|
|
4151
4295
|
type index_ImportDto = ImportDto;
|
|
4152
4296
|
type index_OverviewUserDto = OverviewUserDto;
|
|
4153
4297
|
declare namespace index {
|
|
4154
|
-
export { type index_AutoFillAccountRawDto as AutoFillAccountRawDto, type index_ExportDto as ExportDto, type index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, type index_FilterAccountCanvaDto as FilterAccountCanvaDto, type index_FilterAccountDriveDto as FilterAccountDriveDto, type index_FilterAccountDto as FilterAccountDto, type index_FilterAccountRawDto as FilterAccountRawDto, type index_FilterAccountVPNDto as FilterAccountVPNDto, type index_FilterAccountVPSDto as FilterAccountVPSDto, type index_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, type index_FilterAccountsGroupDto as FilterAccountsGroupDto, type index_FilterBaseDto as FilterBaseDto, type index_FilterBlogCategoryDto as FilterBlogCategoryDto, type index_FilterBlogDto as FilterBlogDto, type index_FilterDepartmentDto as FilterDepartmentDto, type index_FilterDeviceDto as FilterDeviceDto, type index_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, type index_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, type index_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, type index_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, type
|
|
4298
|
+
export { type index_AutoFillAccountRawDto as AutoFillAccountRawDto, type index_AutoFillOverviewAccountRawDto as AutoFillOverviewAccountRawDto, type index_ExportDto as ExportDto, type index_FilterAccountAIDto as FilterAccountAIDto, type index_FilterAccountAIImageDto as FilterAccountAIImageDto, type index_FilterAccountAIVoiceDto as FilterAccountAIVoiceDto, type index_FilterAccountCHPlayICloudDto as FilterAccountCHPlayICloudDto, type index_FilterAccountCanvaDto as FilterAccountCanvaDto, type index_FilterAccountDriveDto as FilterAccountDriveDto, type index_FilterAccountDto as FilterAccountDto, type index_FilterAccountRawDto as FilterAccountRawDto, type index_FilterAccountVPNDto as FilterAccountVPNDto, type index_FilterAccountVPSDto as FilterAccountVPSDto, type index_FilterAccountVPSGroupDto as FilterAccountVPSGroupDto, type index_FilterAccountsGroupDto as FilterAccountsGroupDto, type index_FilterBaseDto as FilterBaseDto, type index_FilterBlogCategoryDto as FilterBlogCategoryDto, type index_FilterBlogDto as FilterBlogDto, type index_FilterDepartmentDto as FilterDepartmentDto, type index_FilterDeviceDto as FilterDeviceDto, type index_FilterHistoryTaskAIContentDto as FilterHistoryTaskAIContentDto, type index_FilterHistoryTaskAIImageDto as FilterHistoryTaskAIImageDto, type index_FilterHistoryTaskAIVoiceDto as FilterHistoryTaskAIVoiceDto, type index_FilterHistoryTaskCanvaDto as FilterHistoryTaskCanvaDto, type index_FilterIAccountAIImageInfoDto as FilterIAccountAIImageInfoDto, type index_FilterIAccountAIInfoDto as FilterIAccountAIInfoDto, type index_FilterIAccountAIVoiceInfoDto as FilterIAccountAIVoiceInfoDto, type index_FilterIAccountEmailDto as FilterIAccountEmailDto, type index_FilterIManagerImageAIDto as FilterIManagerImageAIDto, type index_FilterInstagramInteractExploreDto as FilterInstagramInteractExploreDto, type index_FilterInstagramInteractFollowDto as FilterInstagramInteractFollowDto, type index_FilterInstagramInteractReelDto as FilterInstagramInteractReelDto, type index_FilterInstagramInteractReplyCommentDto as FilterInstagramInteractReplyCommentDto, type index_FilterInstagramInteractReplyMessageDto as FilterInstagramInteractReplyMessageDto, type index_FilterInstagramInteractStoryDto as FilterInstagramInteractStoryDto, type index_FilterInstagramPostHighLightDto as FilterInstagramPostHighLightDto, type index_FilterInstagramPostNewDto as FilterInstagramPostNewDto, type index_FilterInstagramPostReelDto as FilterInstagramPostReelDto, type index_FilterInstagramPostStoryDto as FilterInstagramPostStoryDto, type index_FilterInstagramSettingInteractExploreDto as FilterInstagramSettingInteractExploreDto, type index_FilterInstagramSettingInteractFollowDto as FilterInstagramSettingInteractFollowDto, type index_FilterInstagramSettingInteractReelDto as FilterInstagramSettingInteractReelDto, type index_FilterInstagramSettingPostDto as FilterInstagramSettingPostDto, type index_FilterInstagramSettingReplyCommentDto as FilterInstagramSettingReplyCommentDto, type index_FilterInstagramSettingReplyMessageDto as FilterInstagramSettingReplyMessageDto, type index_FilterInstagramSettingStoryDto as FilterInstagramSettingStoryDto, type index_FilterInstagramSettingUnFollowDto as FilterInstagramSettingUnFollowDto, type index_FilterLarkDto as FilterLarkDto, type index_FilterManagerSheetDto as FilterManagerSheetDto, type index_FilterManagerWorkDto as FilterManagerWorkDto, type index_FilterPCDto as FilterPCDto, type index_FilterProxyDto as FilterProxyDto, type index_FilterRoleDto as FilterRoleDto, type index_FilterSheetWorkDto as FilterSheetWorkDto, type index_FilterSheetWorkManagerDto as FilterSheetWorkManagerDto, type index_FilterSheetsToolDto as FilterSheetsToolDto, type index_FilterTeamDto as FilterTeamDto, type index_FilterThreadsInteractFollowDto as FilterThreadsInteractFollowDto, type index_FilterThreadsInteractReplyCommentDto as FilterThreadsInteractReplyCommentDto, type index_FilterThreadsPostNewDto as FilterThreadsPostNewDto, type index_FilterThreadsSettingInteractFollowDto as FilterThreadsSettingInteractFollowDto, type index_FilterThreadsSettingInteractReplyCommentDto as FilterThreadsSettingInteractReplyCommentDto, type index_FilterThreadsSettingPostDto as FilterThreadsSettingPostDto, type index_FilterUserDto as FilterUserDto, type index_FindAccountAIDto as FindAccountAIDto, type index_FindAccountAIImageDto as FindAccountAIImageDto, type index_FindAccountAIVoiceDto as FindAccountAIVoiceDto, type index_FindAccountCHPlayICloudDto as FindAccountCHPlayICloudDto, type index_FindAccountCanvaDto as FindAccountCanvaDto, type index_FindAccountDriveDto as FindAccountDriveDto, type index_FindAccountDto as FindAccountDto, type index_FindAccountRawDto as FindAccountRawDto, type index_FindAccountVPNDto as FindAccountVPNDto, type index_FindAccountVPSDto as FindAccountVPSDto, type index_FindAccountVPSGroupDto as FindAccountVPSGroupDto, type index_FindAccountsGroupDto as FindAccountsGroupDto, type index_FindBlogCategoryDto as FindBlogCategoryDto, type index_FindBlogDto as FindBlogDto, type index_FindDepartmentDto as FindDepartmentDto, type index_FindDeviceDto as FindDeviceDto, type index_FindForReviewDto as FindForReviewDto, type index_FindHistoryTaskAIContentDto as FindHistoryTaskAIContentDto, type index_FindHistoryTaskAIImageDto as FindHistoryTaskAIImageDto, type index_FindHistoryTaskAIVoiceDto as FindHistoryTaskAIVoiceDto, type index_FindHistoryTaskCanvaDto as FindHistoryTaskCanvaDto, type index_FindIAccountAIImageInfoDto as FindIAccountAIImageInfoDto, type index_FindIAccountAIInfoDto as FindIAccountAIInfoDto, type index_FindIAccountAIVoiceInfoDto as FindIAccountAIVoiceInfoDto, type index_FindIAccountEmailDto as FindIAccountEmailDto, type index_FindIManagerImageAIDto as FindIManagerImageAIDto, type index_FindInstagramInteractExploreDto as FindInstagramInteractExploreDto, type index_FindInstagramInteractFollowDto as FindInstagramInteractFollowDto, type index_FindInstagramInteractReelDto as FindInstagramInteractReelDto, type index_FindInstagramInteractReplyCommentDto as FindInstagramInteractReplyCommentDto, type index_FindInstagramInteractReplyMessageDto as FindInstagramInteractReplyMessageDto, type index_FindInstagramInteractStoryDto as FindInstagramInteractStoryDto, type index_FindInstagramPostHighLightDto as FindInstagramPostHighLightDto, type index_FindInstagramPostNewDto as FindInstagramPostNewDto, type index_FindInstagramPostReelDto as FindInstagramPostReelDto, type index_FindInstagramPostStoryDto as FindInstagramPostStoryDto, type index_FindInstagramSettingInteractExploreDto as FindInstagramSettingInteractExploreDto, type index_FindInstagramSettingInteractFollowDto as FindInstagramSettingInteractFollowDto, type index_FindInstagramSettingInteractReelDto as FindInstagramSettingInteractReelDto, type index_FindInstagramSettingPostDto as FindInstagramSettingPostDto, type index_FindInstagramSettingReplyCommentDto as FindInstagramSettingReplyCommentDto, type index_FindInstagramSettingReplyMessageDto as FindInstagramSettingReplyMessageDto, type index_FindInstagramSettingStoryDto as FindInstagramSettingStoryDto, type index_FindInstagramSettingUnFollowDto as FindInstagramSettingUnFollowDto, type index_FindLarkDto as FindLarkDto, type index_FindManagerSheetDto as FindManagerSheetDto, type index_FindManagerWorkDto as FindManagerWorkDto, type index_FindOverViewAccountDto as FindOverViewAccountDto, type index_FindOverViewAccountRowDto as FindOverViewAccountRowDto, type index_FindOverviewAccountCHPlayICloudDto as FindOverviewAccountCHPlayICloudDto, type index_FindOverviewAccountCanvaDto as FindOverviewAccountCanvaDto, type index_FindOverviewAccountDriveDto as FindOverviewAccountDriveDto, type index_FindOverviewAccountVPNDto as FindOverviewAccountVPNDto, type index_FindOverviewProxyDto as FindOverviewProxyDto, type index_FindPCDto as FindPCDto, type index_FindProxyDto as FindProxyDto, type index_FindRoleDto as FindRoleDto, type index_FindSheetWorkDto as FindSheetWorkDto, type index_FindSheetWorkManagerDto as FindSheetWorkManagerDto, type index_FindSheetsToolDto as FindSheetsToolDto, type index_FindTeamDto as FindTeamDto, type index_FindThreadsInteractFollowDto as FindThreadsInteractFollowDto, type index_FindThreadsInteractReplyCommentDto as FindThreadsInteractReplyCommentDto, type index_FindThreadsPostNewDto as FindThreadsPostNewDto, type index_FindThreadsSettingInteractFollowDto as FindThreadsSettingInteractFollowDto, type index_FindThreadsSettingInteractReplyCommentDto as FindThreadsSettingInteractReplyCommentDto, type index_FindThreadsSettingPostDto as FindThreadsSettingPostDto, type index_FindUserDto as FindUserDto, type index_IBaseDto as IBaseDto, type index_IBaseSheetImportDto as IBaseSheetImportDto, type index_ImportDto as ImportDto, type index_OverviewUserDto as OverviewUserDto, index$1 as TaskBrowsers, index$2 as TaskPhones };
|
|
4155
4299
|
}
|
|
4156
4300
|
|
|
4157
|
-
export { index$l as AutoConstants, index as AutoDto, index$e as AutoEnums, index$3 as AutoInterfacesCommon, index$4 as AutoInterfacesModels, index$d as AutoTypes };
|
|
4301
|
+
export { index$b as Auth, index$l as AutoConstants, index as AutoDto, index$e as AutoEnums, index$3 as AutoInterfacesCommon, index$4 as AutoInterfacesModels, index$d as AutoTypes, index$c as Common, index$6 as History, type IAccount, type IAccountAI, type IAccountAIChannel, type IAccountAIGroup, type IAccountAIImage, type IAccountAIImageChannel, type IAccountAIImageGroup, type IAccountAIImageInfo, type IAccountAIImageTag, type IAccountAIInfo, type IAccountAITag, type IAccountAIVoice, type IAccountAIVoiceChannel, type IAccountAIVoiceGroup, type IAccountAIVoiceInfo, type IAccountAIVoiceTag, type IAccountCHPlayICloud, type IAccountCanva, type IAccountDrive, type IAccountEmail, type IAccountEmailProxy, type IAccountEmailTag, type IAccountEmailTaskWork, type IAccountRaw, type IAccountVPN, type IAccountVPS, type IAccountVPSGroup, type IAccountsGroup, type IAuthLogin, type IAuthResetPassword, type IBaseModel, type IBlog, type IBlogCategory, type IBlogPermission, type IDataDiscussTaskJob, type IDataNotification, type IDataUser, type IDepartment, type IDepartmentRole, type IDevice, type IDeviceSettingForAccount, type IDeviceSettingForCHPlay, type IDeviceSettingForProxy, type IDeviceSettingForVPN, type IDomain, type IFile, type IFilterStore, type IHistoryTaskAIContent, type IHistoryTaskAIImage, type IHistoryTaskAIVoice, type IHistoryTaskCanva, type IIdea, type IInstagramInteractExplore, type IInstagramInteractFollow, type IInstagramInteractReel, type IInstagramInteractReplyComment, type IInstagramInteractReplyMessage, type IInstagramInteractStory, type IInstagramPostHighLight, type IInstagramPostNew, type IInstagramPostReel, type IInstagramPostSquare, type IInstagramPostStory, type IInstagramSettingInteractExplore, type IInstagramSettingInteractFollow, type IInstagramSettingInteractReel, type IInstagramSettingInteractReplyComment, type IInstagramSettingInteractReplyMessage, type IInstagramSettingInteractStory, type IInstagramSettingInteractUnFollow, type IInstagramSettingPost, type IInteractSentMessageDetail, type ILark, type ILarkTeam, type IManagerImageAI, type IManagerImageAIItemStore, type IManagerImageAIUserAttached, type IManagerSheet, type IManagerSheetChildren, type IManagerSheetChildrenGroup, type IManagerSheetChildrenGroupItem, type IManagerSheetGroup, type IManagerWork, type IManagerWorkPin, type INiche, type IOtpConfirm, type IOtpCreateSession, type IOtpSend, type IPC, type IProxy, type IResponseLogin, type IRole, type IRoleFeature, type ISheetImport, type ISheetWork, type ISheetWorkManager, type ISheetWorkPin, type ISheetWorksCategory, type ISheetsTool, type ITag, type ITaskJob, type ITaskJobAttachmentBlog, type ITaskJobBlogAttached, type ITaskJobCheckList, type ITaskJobDepartmentPermission, type ITaskJobDiscuss, type ITaskJobLabel, type ITaskJobPermission, type ITaskJobTeamPermission, type ITaskJobUserPermission, type ITaskJobsGroup, type ITeam, type ITeamMember, type ITeamRole, type IThreadsInteractFollow, type IThreadsInteractReplyComment, type IThreadsPostNew, type IThreadsSettingInteractFollow, type IThreadsSettingInteractReplyComment, type IThreadsSettingPost, type IToken, type ITrackingModel, type ITrackingTimeScript, type ITrackingUserAction, type IUser, type IUserRole, type IVoiceGenerated, type IVoiceLanguage, type IVoiceSettingDelay, type IVoiceStores, index$5 as Socials, index$8 as TaskBrowsers, index$9 as TaskPhones, index$7 as Tool, index$a as Web };
|
package/dist/index.js
CHANGED
|
@@ -20,12 +20,20 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// src/index.ts
|
|
21
21
|
var index_exports = {};
|
|
22
22
|
__export(index_exports, {
|
|
23
|
+
Auth: () => auth_exports,
|
|
23
24
|
AutoConstants: () => constants_exports,
|
|
24
25
|
AutoDto: () => dto_exports,
|
|
25
26
|
AutoEnums: () => enums_exports,
|
|
26
27
|
AutoInterfacesCommon: () => common_exports3,
|
|
27
28
|
AutoInterfacesModels: () => models_exports,
|
|
28
|
-
AutoTypes: () => types_exports2
|
|
29
|
+
AutoTypes: () => types_exports2,
|
|
30
|
+
Common: () => common_exports2,
|
|
31
|
+
History: () => history_exports,
|
|
32
|
+
Socials: () => socials_exports,
|
|
33
|
+
TaskBrowsers: () => browsers_exports,
|
|
34
|
+
TaskPhones: () => phones_exports,
|
|
35
|
+
Tool: () => tool_exports,
|
|
36
|
+
Web: () => web_exports
|
|
29
37
|
});
|
|
30
38
|
module.exports = __toCommonJS(index_exports);
|
|
31
39
|
|
|
@@ -1111,10 +1119,18 @@ var phones_exports2 = {};
|
|
|
1111
1119
|
var browsers_exports2 = {};
|
|
1112
1120
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1113
1121
|
0 && (module.exports = {
|
|
1122
|
+
Auth,
|
|
1114
1123
|
AutoConstants,
|
|
1115
1124
|
AutoDto,
|
|
1116
1125
|
AutoEnums,
|
|
1117
1126
|
AutoInterfacesCommon,
|
|
1118
1127
|
AutoInterfacesModels,
|
|
1119
|
-
AutoTypes
|
|
1128
|
+
AutoTypes,
|
|
1129
|
+
Common,
|
|
1130
|
+
History,
|
|
1131
|
+
Socials,
|
|
1132
|
+
TaskBrowsers,
|
|
1133
|
+
TaskPhones,
|
|
1134
|
+
Tool,
|
|
1135
|
+
Web
|
|
1120
1136
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -1085,10 +1085,18 @@ var phones_exports2 = {};
|
|
|
1085
1085
|
// src/dto/tool/tasks/browsers/index.ts
|
|
1086
1086
|
var browsers_exports2 = {};
|
|
1087
1087
|
export {
|
|
1088
|
+
auth_exports as Auth,
|
|
1088
1089
|
constants_exports as AutoConstants,
|
|
1089
1090
|
dto_exports as AutoDto,
|
|
1090
1091
|
enums_exports as AutoEnums,
|
|
1091
1092
|
common_exports3 as AutoInterfacesCommon,
|
|
1092
1093
|
models_exports as AutoInterfacesModels,
|
|
1093
|
-
types_exports2 as AutoTypes
|
|
1094
|
+
types_exports2 as AutoTypes,
|
|
1095
|
+
common_exports2 as Common,
|
|
1096
|
+
history_exports as History,
|
|
1097
|
+
socials_exports as Socials,
|
|
1098
|
+
browsers_exports as TaskBrowsers,
|
|
1099
|
+
phones_exports as TaskPhones,
|
|
1100
|
+
tool_exports as Tool,
|
|
1101
|
+
web_exports as Web
|
|
1094
1102
|
};
|