automation-lib 5.0.118 → 5.0.119

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.
Files changed (3) hide show
  1. package/dist/index.d.mts +159 -161
  2. package/dist/index.d.ts +159 -161
  3. package/package.json +1 -1
package/dist/index.d.mts CHANGED
@@ -1009,12 +1009,143 @@ declare namespace index$a {
1009
1009
  export type { index$a_ITaskThreadsPost as ITaskThreadsPost, index$a_TCompare as TCompare, index$a_TFilter as TFilter, index$a_TTaskDataInstagramThreads as TTaskDataInstagramThreads, index$a_TTaskInstagram as TTaskInstagram, index$a_TTaskInstagramBlockUser as TTaskInstagramBlockUser, index$a_TTaskInstagramChangeInfo as TTaskInstagramChangeInfo, index$a_TTaskInstagramFollow as TTaskInstagramFollow, index$a_TTaskInstagramPost as TTaskInstagramPost, index$a_TTaskInstagramReplyComment as TTaskInstagramReplyComment, index$a_TTaskInstagramReplyMessage as TTaskInstagramReplyMessage, index$a_TTaskThreads as TTaskThreads };
1010
1010
  }
1011
1011
 
1012
+ interface IBaseModel {
1013
+ id: string;
1014
+ createdAt: Date;
1015
+ updatedAt: Date;
1016
+ version: number;
1017
+ }
1018
+ interface ITrackingModel<T> {
1019
+ createdBy: T | string;
1020
+ updatedBy: T | string;
1021
+ }
1022
+
1023
+ interface IFile extends IBaseModel, ITrackingModel<IUser> {
1024
+ name: string;
1025
+ path: string;
1026
+ size: number;
1027
+ type: string;
1028
+ md5: string;
1029
+ url: string;
1030
+ isDraft: boolean;
1031
+ }
1032
+
1033
+ type index$9_IBaseModel = IBaseModel;
1034
+ type index$9_IFile = IFile;
1035
+ type index$9_ITrackingModel<T> = ITrackingModel<T>;
1036
+ declare namespace index$9 {
1037
+ export type { index$9_IBaseModel as IBaseModel, index$9_IFile as IFile, index$9_ITrackingModel as ITrackingModel };
1038
+ }
1039
+
1012
1040
  interface IDepartment extends IBaseModel, ITrackingModel<IUser> {
1013
1041
  department_name: string;
1014
1042
  department_slug: string;
1015
1043
  department_description: string;
1016
1044
  }
1017
1045
 
1046
+ interface IUser extends IBaseModel, ITrackingModel<IUser> {
1047
+ user_avatar: string;
1048
+ user_fullName: string;
1049
+ user_email: string;
1050
+ user_phone: string;
1051
+ user_password: string;
1052
+ user_gender: string;
1053
+ user_attachmentAccountIdLark: string;
1054
+ user_attachmentAccountNameLark: string;
1055
+ user_department: IDepartment | string;
1056
+ user_isRootAdmin: boolean;
1057
+ user_isSubAdmin: boolean;
1058
+ user_isBlocked: boolean;
1059
+ }
1060
+
1061
+ interface IAuthLogin extends Pick<IUser, 'user_email' | 'user_password'> {
1062
+ user_key: string;
1063
+ }
1064
+ interface IAuthResetPassword extends Pick<IUser, 'user_email' | 'user_password'> {
1065
+ user_confirmPassword: string;
1066
+ }
1067
+
1068
+ interface IToken extends BoInterfaceModelsCommon.IBaseModel {
1069
+ token_secretKey: string;
1070
+ token_code: string;
1071
+ token_user: IUser | string;
1072
+ }
1073
+
1074
+ interface IOtpCreateSession extends Pick<IUser, 'user_email'> {
1075
+ }
1076
+ interface IOtpSend extends Pick<IUser, 'user_email'> {
1077
+ }
1078
+ interface IOtpConfirm extends Pick<IUser, 'user_email'> {
1079
+ otp: string;
1080
+ }
1081
+
1082
+ /**
1083
+ *
1084
+ * !rf_sources: "blogs" => keyof AllFeaturesRoutes
1085
+ * !rf_actions: ["Manager"] => Accepts all actions; Array<ERoleActions>
1086
+ * !rf_attributes: <typeof Entity>{} Accepts all fields will be can update, except user_name;
1087
+ */
1088
+ interface IRoleFeature {
1089
+ source: string;
1090
+ actions: Array<string>;
1091
+ attributes: object;
1092
+ }
1093
+ interface IRole extends IBaseModel, ITrackingModel<IUser> {
1094
+ role_name: string;
1095
+ role_slug: string;
1096
+ role_desc: string;
1097
+ role_featuresRoles: Array<IRoleFeature>;
1098
+ }
1099
+
1100
+ interface IUserRole extends BoInterfaceModelsCommon.IBaseModel {
1101
+ user: string | IUser;
1102
+ role: string | IRole;
1103
+ }
1104
+
1105
+ type index$8_IAuthLogin = IAuthLogin;
1106
+ type index$8_IAuthResetPassword = IAuthResetPassword;
1107
+ type index$8_IOtpConfirm = IOtpConfirm;
1108
+ type index$8_IOtpCreateSession = IOtpCreateSession;
1109
+ type index$8_IOtpSend = IOtpSend;
1110
+ type index$8_IRole = IRole;
1111
+ type index$8_IRoleFeature = IRoleFeature;
1112
+ type index$8_IToken = IToken;
1113
+ type index$8_IUser = IUser;
1114
+ type index$8_IUserRole = IUserRole;
1115
+ declare namespace index$8 {
1116
+ export type { index$8_IAuthLogin as IAuthLogin, index$8_IAuthResetPassword as IAuthResetPassword, index$8_IOtpConfirm as IOtpConfirm, index$8_IOtpCreateSession as IOtpCreateSession, index$8_IOtpSend as IOtpSend, index$8_IRole as IRole, index$8_IRoleFeature as IRoleFeature, index$8_IToken as IToken, index$8_IUser as IUser, index$8_IUserRole as IUserRole };
1117
+ }
1118
+
1119
+ interface ILogTaskAIContent extends IBaseModel, ITrackingModel<IUser> {
1120
+ sheetName: string;
1121
+ sheetUrl: string;
1122
+ rowId: string;
1123
+ col: string;
1124
+ input: string;
1125
+ output: string;
1126
+ keyWords: string;
1127
+ model: string;
1128
+ versionModel: string;
1129
+ channelName: string;
1130
+ channelURL: string;
1131
+ status: EStatusTaskAIContent;
1132
+ }
1133
+
1134
+ interface IManagerSheetGroup extends IBaseModel, ITrackingModel<IUser> {
1135
+ name: string;
1136
+ slug: string;
1137
+ }
1138
+
1139
+ interface IManagerSheet extends IBaseModel, ITrackingModel<IUser> {
1140
+ key: string;
1141
+ typeSocial: ETypeSocial;
1142
+ group: string | IManagerSheetGroup;
1143
+ standardColumn: string;
1144
+ url: string;
1145
+ name: string;
1146
+ isActive: boolean;
1147
+ }
1148
+
1018
1149
  interface IManagerWork extends IBaseModel, ITrackingModel<IUser> {
1019
1150
  mw_name: string;
1020
1151
  mw_user: string | IUser;
@@ -1119,24 +1250,6 @@ interface ITeam extends IBaseModel, ITrackingModel<IUser> {
1119
1250
  status: EStatusTeam;
1120
1251
  }
1121
1252
 
1122
- /**
1123
- *
1124
- * !rf_sources: "blogs" => keyof AllFeaturesRoutes
1125
- * !rf_actions: ["Manager"] => Accepts all actions; Array<ERoleActions>
1126
- * !rf_attributes: <typeof Entity>{} Accepts all fields will be can update, except user_name;
1127
- */
1128
- interface IRoleFeature {
1129
- source: string;
1130
- actions: Array<string>;
1131
- attributes: object;
1132
- }
1133
- interface IRole extends IBaseModel, ITrackingModel<IUser> {
1134
- role_name: string;
1135
- role_slug: string;
1136
- role_desc: string;
1137
- role_featuresRoles: Array<IRoleFeature>;
1138
- }
1139
-
1140
1253
  interface ITeamRole extends IBaseModel, ITrackingModel<IUser> {
1141
1254
  team: string | ITeam;
1142
1255
  role: string | IRole;
@@ -1234,149 +1347,34 @@ interface IImage extends IBaseModel, ITrackingModel<IUser> {
1234
1347
  image_heigh: number;
1235
1348
  }
1236
1349
 
1237
- type index$9_IBlog = IBlog;
1238
- type index$9_IBlogsCategory = IBlogsCategory;
1239
- type index$9_IDepartment = IDepartment;
1240
- type index$9_IDepartmentRole = IDepartmentRole;
1241
- type index$9_IDomain = IDomain;
1242
- type index$9_IImage = IImage;
1243
- type index$9_ILark = ILark;
1244
- type index$9_IManagerWork = IManagerWork;
1245
- type index$9_IManagerWorkPin = IManagerWorkPin;
1246
- type index$9_ISheetWork = ISheetWork;
1247
- type index$9_ISheetWorkManager = ISheetWorkManager;
1248
- type index$9_ISheetWorkPin = ISheetWorkPin;
1249
- type index$9_ISheetWorksCategory = ISheetWorksCategory;
1250
- type index$9_ITag = ITag;
1251
- type index$9_ITaskJob = ITaskJob;
1252
- type index$9_ITaskJobBlogAttached = ITaskJobBlogAttached;
1253
- type index$9_ITaskJobCheckList = ITaskJobCheckList;
1254
- type index$9_ITaskJobDepartmentPermission = ITaskJobDepartmentPermission;
1255
- type index$9_ITaskJobDiscuss = ITaskJobDiscuss;
1256
- type index$9_ITaskJobLabel = ITaskJobLabel;
1257
- type index$9_ITaskJobTeamPermission = ITaskJobTeamPermission;
1258
- type index$9_ITaskJobUserPermission = ITaskJobUserPermission;
1259
- type index$9_ITaskJobsGroup = ITaskJobsGroup;
1260
- type index$9_ITeam = ITeam;
1261
- type index$9_ITeamMember = ITeamMember;
1262
- type index$9_ITeamRole = ITeamRole;
1263
- declare namespace index$9 {
1264
- export type { index$9_IBlog as IBlog, index$9_IBlogsCategory as IBlogsCategory, index$9_IDepartment as IDepartment, index$9_IDepartmentRole as IDepartmentRole, index$9_IDomain as IDomain, index$9_IImage as IImage, index$9_ILark as ILark, index$9_IManagerWork as IManagerWork, index$9_IManagerWorkPin as IManagerWorkPin, index$9_ISheetWork as ISheetWork, index$9_ISheetWorkManager as ISheetWorkManager, index$9_ISheetWorkPin as ISheetWorkPin, index$9_ISheetWorksCategory as ISheetWorksCategory, index$9_ITag as ITag, index$9_ITaskJob as ITaskJob, index$9_ITaskJobBlogAttached as ITaskJobBlogAttached, index$9_ITaskJobCheckList as ITaskJobCheckList, index$9_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, index$9_ITaskJobDiscuss as ITaskJobDiscuss, index$9_ITaskJobLabel as ITaskJobLabel, index$9_ITaskJobTeamPermission as ITaskJobTeamPermission, index$9_ITaskJobUserPermission as ITaskJobUserPermission, index$9_ITaskJobsGroup as ITaskJobsGroup, index$9_ITeam as ITeam, index$9_ITeamMember as ITeamMember, index$9_ITeamRole as ITeamRole };
1265
- }
1266
-
1267
- interface IBaseModel {
1268
- id: string;
1269
- createdAt: Date;
1270
- updatedAt: Date;
1271
- version: number;
1272
- }
1273
- interface ITrackingModel<T> {
1274
- createdBy: T | string;
1275
- updatedBy?: T | string;
1276
- team?: ITeam | string;
1277
- department?: IDepartment | string;
1278
- }
1279
-
1280
- interface IFile extends IBaseModel, ITrackingModel<IUser> {
1281
- name: string;
1282
- path: string;
1283
- size: number;
1284
- type: string;
1285
- md5: string;
1286
- url: string;
1287
- isDraft: boolean;
1288
- }
1289
-
1290
- type index$8_IBaseModel = IBaseModel;
1291
- type index$8_IFile = IFile;
1292
- type index$8_ITrackingModel<T> = ITrackingModel<T>;
1293
- declare namespace index$8 {
1294
- export type { index$8_IBaseModel as IBaseModel, index$8_IFile as IFile, index$8_ITrackingModel as ITrackingModel };
1295
- }
1296
-
1297
- interface IUser extends IBaseModel, ITrackingModel<IUser> {
1298
- user_avatar: string;
1299
- user_fullName: string;
1300
- user_email: string;
1301
- user_phone: string;
1302
- user_password: string;
1303
- user_gender: string;
1304
- user_attachmentAccountIdLark: string;
1305
- user_attachmentAccountNameLark: string;
1306
- user_department: IDepartment | string;
1307
- user_isRootAdmin: boolean;
1308
- user_isSubAdmin: boolean;
1309
- user_isBlocked: boolean;
1310
- }
1311
-
1312
- interface IAuthLogin extends Pick<IUser, 'user_email' | 'user_password'> {
1313
- user_key: string;
1314
- }
1315
- interface IAuthResetPassword extends Pick<IUser, 'user_email' | 'user_password'> {
1316
- user_confirmPassword: string;
1317
- }
1318
-
1319
- interface IToken extends BoInterfaceModelsCommon.IBaseModel {
1320
- token_secretKey: string;
1321
- token_code: string;
1322
- token_user: IUser | string;
1323
- }
1324
-
1325
- interface IOtpCreateSession extends Pick<IUser, 'user_email'> {
1326
- }
1327
- interface IOtpSend extends Pick<IUser, 'user_email'> {
1328
- }
1329
- interface IOtpConfirm extends Pick<IUser, 'user_email'> {
1330
- otp: string;
1331
- }
1332
-
1333
- interface IUserRole extends BoInterfaceModelsCommon.IBaseModel {
1334
- user: string | IUser;
1335
- role: string | IRole;
1336
- }
1337
-
1338
- type index$7_IAuthLogin = IAuthLogin;
1339
- type index$7_IAuthResetPassword = IAuthResetPassword;
1340
- type index$7_IOtpConfirm = IOtpConfirm;
1341
- type index$7_IOtpCreateSession = IOtpCreateSession;
1342
- type index$7_IOtpSend = IOtpSend;
1343
- type index$7_IRole = IRole;
1344
- type index$7_IRoleFeature = IRoleFeature;
1345
- type index$7_IToken = IToken;
1346
- type index$7_IUser = IUser;
1347
- type index$7_IUserRole = IUserRole;
1350
+ type index$7_IBlog = IBlog;
1351
+ type index$7_IBlogsCategory = IBlogsCategory;
1352
+ type index$7_IDepartment = IDepartment;
1353
+ type index$7_IDepartmentRole = IDepartmentRole;
1354
+ type index$7_IDomain = IDomain;
1355
+ type index$7_IImage = IImage;
1356
+ type index$7_ILark = ILark;
1357
+ type index$7_IManagerWork = IManagerWork;
1358
+ type index$7_IManagerWorkPin = IManagerWorkPin;
1359
+ type index$7_ISheetWork = ISheetWork;
1360
+ type index$7_ISheetWorkManager = ISheetWorkManager;
1361
+ type index$7_ISheetWorkPin = ISheetWorkPin;
1362
+ type index$7_ISheetWorksCategory = ISheetWorksCategory;
1363
+ type index$7_ITag = ITag;
1364
+ type index$7_ITaskJob = ITaskJob;
1365
+ type index$7_ITaskJobBlogAttached = ITaskJobBlogAttached;
1366
+ type index$7_ITaskJobCheckList = ITaskJobCheckList;
1367
+ type index$7_ITaskJobDepartmentPermission = ITaskJobDepartmentPermission;
1368
+ type index$7_ITaskJobDiscuss = ITaskJobDiscuss;
1369
+ type index$7_ITaskJobLabel = ITaskJobLabel;
1370
+ type index$7_ITaskJobTeamPermission = ITaskJobTeamPermission;
1371
+ type index$7_ITaskJobUserPermission = ITaskJobUserPermission;
1372
+ type index$7_ITaskJobsGroup = ITaskJobsGroup;
1373
+ type index$7_ITeam = ITeam;
1374
+ type index$7_ITeamMember = ITeamMember;
1375
+ type index$7_ITeamRole = ITeamRole;
1348
1376
  declare namespace index$7 {
1349
- export type { index$7_IAuthLogin as IAuthLogin, index$7_IAuthResetPassword as IAuthResetPassword, index$7_IOtpConfirm as IOtpConfirm, index$7_IOtpCreateSession as IOtpCreateSession, index$7_IOtpSend as IOtpSend, index$7_IRole as IRole, index$7_IRoleFeature as IRoleFeature, index$7_IToken as IToken, index$7_IUser as IUser, index$7_IUserRole as IUserRole };
1350
- }
1351
-
1352
- interface ILogTaskAIContent extends IBaseModel, ITrackingModel<IUser> {
1353
- sheetName: string;
1354
- sheetUrl: string;
1355
- rowId: string;
1356
- col: string;
1357
- input: string;
1358
- output: string;
1359
- keyWords: string;
1360
- model: string;
1361
- versionModel: string;
1362
- channelName: string;
1363
- channelURL: string;
1364
- status: EStatusTaskAIContent;
1365
- }
1366
-
1367
- interface IManagerSheetGroup extends IBaseModel, ITrackingModel<IUser> {
1368
- name: string;
1369
- slug: string;
1370
- }
1371
-
1372
- interface IManagerSheet extends IBaseModel, ITrackingModel<IUser> {
1373
- key: string;
1374
- typeSocial: ETypeSocial;
1375
- group: string | IManagerSheetGroup;
1376
- standardColumn: string;
1377
- url: string;
1378
- name: string;
1379
- isActive: boolean;
1377
+ export type { index$7_IBlog as IBlog, index$7_IBlogsCategory as IBlogsCategory, index$7_IDepartment as IDepartment, index$7_IDepartmentRole as IDepartmentRole, index$7_IDomain as IDomain, index$7_IImage as IImage, index$7_ILark as ILark, index$7_IManagerWork as IManagerWork, index$7_IManagerWorkPin as IManagerWorkPin, index$7_ISheetWork as ISheetWork, index$7_ISheetWorkManager as ISheetWorkManager, index$7_ISheetWorkPin as ISheetWorkPin, index$7_ISheetWorksCategory as ISheetWorksCategory, index$7_ITag as ITag, index$7_ITaskJob as ITaskJob, index$7_ITaskJobBlogAttached as ITaskJobBlogAttached, index$7_ITaskJobCheckList as ITaskJobCheckList, index$7_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, index$7_ITaskJobDiscuss as ITaskJobDiscuss, index$7_ITaskJobLabel as ITaskJobLabel, index$7_ITaskJobTeamPermission as ITaskJobTeamPermission, index$7_ITaskJobUserPermission as ITaskJobUserPermission, index$7_ITaskJobsGroup as ITaskJobsGroup, index$7_ITeam as ITeam, index$7_ITeamMember as ITeamMember, index$7_ITeamRole as ITeamRole };
1380
1378
  }
1381
1379
 
1382
1380
  interface IAccountAIChannel extends IBaseModel, ITrackingModel<IUser> {
@@ -2884,7 +2882,7 @@ type index$1_IVoiceLanguage = IVoiceLanguage;
2884
2882
  type index$1_IVoiceSettingDelay = IVoiceSettingDelay;
2885
2883
  type index$1_IVoiceStores = IVoiceStores;
2886
2884
  declare namespace index$1 {
2887
- export { index$7 as Auth, index$8 as Common, type index$1_IAccount as IAccount, type index$1_IAccountAI as IAccountAI, type index$1_IAccountAIChannel as IAccountAIChannel, type index$1_IAccountAIGroup as IAccountAIGroup, type index$1_IAccountAIImage as IAccountAIImage, type index$1_IAccountAIImageChannel as IAccountAIImageChannel, type index$1_IAccountAIImageGroup as IAccountAIImageGroup, type index$1_IAccountAIImageInfo as IAccountAIImageInfo, type index$1_IAccountAIImageTag as IAccountAIImageTag, type index$1_IAccountAIInfo as IAccountAIInfo, type index$1_IAccountAITag as IAccountAITag, type index$1_IAccountAIVoice as IAccountAIVoice, type index$1_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$1_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$1_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$1_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$1_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$1_IAccountCanva as IAccountCanva, type index$1_IAccountDrive as IAccountDrive, type index$1_IAccountEmail as IAccountEmail, type index$1_IAccountEmailProxy as IAccountEmailProxy, type index$1_IAccountEmailTag as IAccountEmailTag, type index$1_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$1_IAccountRaw as IAccountRaw, type index$1_IAccountVPN as IAccountVPN, type index$1_IAccountVPS as IAccountVPS, type index$1_IAccountVPSGroup as IAccountVPSGroup, type index$1_IAccountsGroup as IAccountsGroup, type index$1_IAuthLogin as IAuthLogin, type index$1_IAuthResetPassword as IAuthResetPassword, type index$1_IBaseModel as IBaseModel, type index$1_IBlog as IBlog, type index$1_IBlogsCategory as IBlogsCategory, type index$1_IDepartment as IDepartment, type index$1_IDepartmentRole as IDepartmentRole, type index$1_IDevice as IDevice, type index$1_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$1_IDeviceSettingForCHPlay as IDeviceSettingForCHPlay, type index$1_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$1_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$1_IDomain as IDomain, type index$1_IFile as IFile, type index$1_IIdea as IIdea, type index$1_IImage as IImage, type index$1_IInstagramInteractExplore as IInstagramInteractExplore, type index$1_IInstagramInteractFollower as IInstagramInteractFollower, type index$1_IInstagramInteractFollowing as IInstagramInteractFollowing, type index$1_IInstagramInteractReel as IInstagramInteractReel, type index$1_IInstagramInteractReplyComment as IInstagramInteractReplyComment, type index$1_IInstagramInteractReplyMessage as IInstagramInteractReplyMessage, type index$1_IInstagramInteractStory as IInstagramInteractStory, type index$1_IInstagramPostHighLight as IInstagramPostHighLight, type index$1_IInstagramPostNew as IInstagramPostNew, type index$1_IInstagramPostReel as IInstagramPostReel, type index$1_IInstagramPostStory as IInstagramPostStory, type index$1_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$1_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$1_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$1_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$1_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$1_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$1_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$1_IInstagramSettingPost as IInstagramSettingPost, type index$1_IInteractSentMessageDetail as IInteractSentMessageDetail, type index$1_ILark as ILark, type index$1_ILogTaskAIContent as ILogTaskAIContent, type index$1_ILogTaskAIImageVoiceCanva as ILogTaskAIImageVoiceCanva, type index$1_IManagerImageAI as IManagerImageAI, type index$1_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$1_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$1_IManagerSheet as IManagerSheet, type index$1_IManagerSheetChildren as IManagerSheetChildren, type index$1_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$1_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$1_IManagerSheetGroup as IManagerSheetGroup, type index$1_IManagerWork as IManagerWork, type index$1_IManagerWorkPin as IManagerWorkPin, type index$1_INiche as INiche, type index$1_IOtpConfirm as IOtpConfirm, type index$1_IOtpCreateSession as IOtpCreateSession, type index$1_IOtpSend as IOtpSend, type index$1_IPC as IPC, type index$1_IProxy as IProxy, type index$1_IRole as IRole, type index$1_IRoleFeature as IRoleFeature, type index$1_ISheetWork as ISheetWork, type index$1_ISheetWorkManager as ISheetWorkManager, type index$1_ISheetWorkPin as ISheetWorkPin, type index$1_ISheetWorksCategory as ISheetWorksCategory, type index$1_ISheetsTool as ISheetsTool, type index$1_ITag as ITag, type index$1_ITaskJob as ITaskJob, type index$1_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$1_ITaskJobCheckList as ITaskJobCheckList, type index$1_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$1_ITaskJobDiscuss as ITaskJobDiscuss, type index$1_ITaskJobLabel as ITaskJobLabel, type index$1_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$1_ITaskJobUserPermission as ITaskJobUserPermission, type index$1_ITaskJobsGroup as ITaskJobsGroup, type index$1_ITeam as ITeam, type index$1_ITeamMember as ITeamMember, type index$1_ITeamRole as ITeamRole, type index$1_IThreadsInteractFollower as IThreadsInteractFollower, type index$1_IThreadsInteractFollowing as IThreadsInteractFollowing, type index$1_IThreadsInteractReplyComment as IThreadsInteractReplyComment, type index$1_IThreadsInteractReplyMessage as IThreadsInteractReplyMessage, type index$1_IThreadsPostNew as IThreadsPostNew, type index$1_IThreadsSettingPost as IThreadsSettingPost, type index$1_IToken as IToken, type index$1_ITrackingModel as ITrackingModel, type index$1_ITrackingScriptExecuted as ITrackingScriptExecuted, type index$1_IUser as IUser, type index$1_IUserRole as IUserRole, type index$1_IVoiceGenerated as IVoiceGenerated, type index$1_IVoiceLanguage as IVoiceLanguage, type index$1_IVoiceSettingDelay as IVoiceSettingDelay, type index$1_IVoiceStores as IVoiceStores, index$3 as Logs, index$2 as Socials, index$5 as TaskBrowsers, index$6 as TaskPhones, index$4 as Tool, index$9 as Web };
2885
+ export { index$8 as Auth, index$9 as Common, type index$1_IAccount as IAccount, type index$1_IAccountAI as IAccountAI, type index$1_IAccountAIChannel as IAccountAIChannel, type index$1_IAccountAIGroup as IAccountAIGroup, type index$1_IAccountAIImage as IAccountAIImage, type index$1_IAccountAIImageChannel as IAccountAIImageChannel, type index$1_IAccountAIImageGroup as IAccountAIImageGroup, type index$1_IAccountAIImageInfo as IAccountAIImageInfo, type index$1_IAccountAIImageTag as IAccountAIImageTag, type index$1_IAccountAIInfo as IAccountAIInfo, type index$1_IAccountAITag as IAccountAITag, type index$1_IAccountAIVoice as IAccountAIVoice, type index$1_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$1_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$1_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$1_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$1_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$1_IAccountCanva as IAccountCanva, type index$1_IAccountDrive as IAccountDrive, type index$1_IAccountEmail as IAccountEmail, type index$1_IAccountEmailProxy as IAccountEmailProxy, type index$1_IAccountEmailTag as IAccountEmailTag, type index$1_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$1_IAccountRaw as IAccountRaw, type index$1_IAccountVPN as IAccountVPN, type index$1_IAccountVPS as IAccountVPS, type index$1_IAccountVPSGroup as IAccountVPSGroup, type index$1_IAccountsGroup as IAccountsGroup, type index$1_IAuthLogin as IAuthLogin, type index$1_IAuthResetPassword as IAuthResetPassword, type index$1_IBaseModel as IBaseModel, type index$1_IBlog as IBlog, type index$1_IBlogsCategory as IBlogsCategory, type index$1_IDepartment as IDepartment, type index$1_IDepartmentRole as IDepartmentRole, type index$1_IDevice as IDevice, type index$1_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$1_IDeviceSettingForCHPlay as IDeviceSettingForCHPlay, type index$1_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$1_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$1_IDomain as IDomain, type index$1_IFile as IFile, type index$1_IIdea as IIdea, type index$1_IImage as IImage, type index$1_IInstagramInteractExplore as IInstagramInteractExplore, type index$1_IInstagramInteractFollower as IInstagramInteractFollower, type index$1_IInstagramInteractFollowing as IInstagramInteractFollowing, type index$1_IInstagramInteractReel as IInstagramInteractReel, type index$1_IInstagramInteractReplyComment as IInstagramInteractReplyComment, type index$1_IInstagramInteractReplyMessage as IInstagramInteractReplyMessage, type index$1_IInstagramInteractStory as IInstagramInteractStory, type index$1_IInstagramPostHighLight as IInstagramPostHighLight, type index$1_IInstagramPostNew as IInstagramPostNew, type index$1_IInstagramPostReel as IInstagramPostReel, type index$1_IInstagramPostStory as IInstagramPostStory, type index$1_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$1_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$1_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$1_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$1_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$1_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$1_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$1_IInstagramSettingPost as IInstagramSettingPost, type index$1_IInteractSentMessageDetail as IInteractSentMessageDetail, type index$1_ILark as ILark, type index$1_ILogTaskAIContent as ILogTaskAIContent, type index$1_ILogTaskAIImageVoiceCanva as ILogTaskAIImageVoiceCanva, type index$1_IManagerImageAI as IManagerImageAI, type index$1_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$1_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$1_IManagerSheet as IManagerSheet, type index$1_IManagerSheetChildren as IManagerSheetChildren, type index$1_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$1_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$1_IManagerSheetGroup as IManagerSheetGroup, type index$1_IManagerWork as IManagerWork, type index$1_IManagerWorkPin as IManagerWorkPin, type index$1_INiche as INiche, type index$1_IOtpConfirm as IOtpConfirm, type index$1_IOtpCreateSession as IOtpCreateSession, type index$1_IOtpSend as IOtpSend, type index$1_IPC as IPC, type index$1_IProxy as IProxy, type index$1_IRole as IRole, type index$1_IRoleFeature as IRoleFeature, type index$1_ISheetWork as ISheetWork, type index$1_ISheetWorkManager as ISheetWorkManager, type index$1_ISheetWorkPin as ISheetWorkPin, type index$1_ISheetWorksCategory as ISheetWorksCategory, type index$1_ISheetsTool as ISheetsTool, type index$1_ITag as ITag, type index$1_ITaskJob as ITaskJob, type index$1_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$1_ITaskJobCheckList as ITaskJobCheckList, type index$1_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$1_ITaskJobDiscuss as ITaskJobDiscuss, type index$1_ITaskJobLabel as ITaskJobLabel, type index$1_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$1_ITaskJobUserPermission as ITaskJobUserPermission, type index$1_ITaskJobsGroup as ITaskJobsGroup, type index$1_ITeam as ITeam, type index$1_ITeamMember as ITeamMember, type index$1_ITeamRole as ITeamRole, type index$1_IThreadsInteractFollower as IThreadsInteractFollower, type index$1_IThreadsInteractFollowing as IThreadsInteractFollowing, type index$1_IThreadsInteractReplyComment as IThreadsInteractReplyComment, type index$1_IThreadsInteractReplyMessage as IThreadsInteractReplyMessage, type index$1_IThreadsPostNew as IThreadsPostNew, type index$1_IThreadsSettingPost as IThreadsSettingPost, type index$1_IToken as IToken, type index$1_ITrackingModel as ITrackingModel, type index$1_ITrackingScriptExecuted as ITrackingScriptExecuted, type index$1_IUser as IUser, type index$1_IUserRole as IUserRole, type index$1_IVoiceGenerated as IVoiceGenerated, type index$1_IVoiceLanguage as IVoiceLanguage, type index$1_IVoiceSettingDelay as IVoiceSettingDelay, type index$1_IVoiceStores as IVoiceStores, index$3 as Logs, index$2 as Socials, index$5 as TaskBrowsers, index$6 as TaskPhones, index$4 as Tool, index$7 as Web };
2888
2886
  }
2889
2887
 
2890
2888
  interface IDataUser {
package/dist/index.d.ts CHANGED
@@ -1009,12 +1009,143 @@ declare namespace index$a {
1009
1009
  export type { index$a_ITaskThreadsPost as ITaskThreadsPost, index$a_TCompare as TCompare, index$a_TFilter as TFilter, index$a_TTaskDataInstagramThreads as TTaskDataInstagramThreads, index$a_TTaskInstagram as TTaskInstagram, index$a_TTaskInstagramBlockUser as TTaskInstagramBlockUser, index$a_TTaskInstagramChangeInfo as TTaskInstagramChangeInfo, index$a_TTaskInstagramFollow as TTaskInstagramFollow, index$a_TTaskInstagramPost as TTaskInstagramPost, index$a_TTaskInstagramReplyComment as TTaskInstagramReplyComment, index$a_TTaskInstagramReplyMessage as TTaskInstagramReplyMessage, index$a_TTaskThreads as TTaskThreads };
1010
1010
  }
1011
1011
 
1012
+ interface IBaseModel {
1013
+ id: string;
1014
+ createdAt: Date;
1015
+ updatedAt: Date;
1016
+ version: number;
1017
+ }
1018
+ interface ITrackingModel<T> {
1019
+ createdBy: T | string;
1020
+ updatedBy: T | string;
1021
+ }
1022
+
1023
+ interface IFile extends IBaseModel, ITrackingModel<IUser> {
1024
+ name: string;
1025
+ path: string;
1026
+ size: number;
1027
+ type: string;
1028
+ md5: string;
1029
+ url: string;
1030
+ isDraft: boolean;
1031
+ }
1032
+
1033
+ type index$9_IBaseModel = IBaseModel;
1034
+ type index$9_IFile = IFile;
1035
+ type index$9_ITrackingModel<T> = ITrackingModel<T>;
1036
+ declare namespace index$9 {
1037
+ export type { index$9_IBaseModel as IBaseModel, index$9_IFile as IFile, index$9_ITrackingModel as ITrackingModel };
1038
+ }
1039
+
1012
1040
  interface IDepartment extends IBaseModel, ITrackingModel<IUser> {
1013
1041
  department_name: string;
1014
1042
  department_slug: string;
1015
1043
  department_description: string;
1016
1044
  }
1017
1045
 
1046
+ interface IUser extends IBaseModel, ITrackingModel<IUser> {
1047
+ user_avatar: string;
1048
+ user_fullName: string;
1049
+ user_email: string;
1050
+ user_phone: string;
1051
+ user_password: string;
1052
+ user_gender: string;
1053
+ user_attachmentAccountIdLark: string;
1054
+ user_attachmentAccountNameLark: string;
1055
+ user_department: IDepartment | string;
1056
+ user_isRootAdmin: boolean;
1057
+ user_isSubAdmin: boolean;
1058
+ user_isBlocked: boolean;
1059
+ }
1060
+
1061
+ interface IAuthLogin extends Pick<IUser, 'user_email' | 'user_password'> {
1062
+ user_key: string;
1063
+ }
1064
+ interface IAuthResetPassword extends Pick<IUser, 'user_email' | 'user_password'> {
1065
+ user_confirmPassword: string;
1066
+ }
1067
+
1068
+ interface IToken extends BoInterfaceModelsCommon.IBaseModel {
1069
+ token_secretKey: string;
1070
+ token_code: string;
1071
+ token_user: IUser | string;
1072
+ }
1073
+
1074
+ interface IOtpCreateSession extends Pick<IUser, 'user_email'> {
1075
+ }
1076
+ interface IOtpSend extends Pick<IUser, 'user_email'> {
1077
+ }
1078
+ interface IOtpConfirm extends Pick<IUser, 'user_email'> {
1079
+ otp: string;
1080
+ }
1081
+
1082
+ /**
1083
+ *
1084
+ * !rf_sources: "blogs" => keyof AllFeaturesRoutes
1085
+ * !rf_actions: ["Manager"] => Accepts all actions; Array<ERoleActions>
1086
+ * !rf_attributes: <typeof Entity>{} Accepts all fields will be can update, except user_name;
1087
+ */
1088
+ interface IRoleFeature {
1089
+ source: string;
1090
+ actions: Array<string>;
1091
+ attributes: object;
1092
+ }
1093
+ interface IRole extends IBaseModel, ITrackingModel<IUser> {
1094
+ role_name: string;
1095
+ role_slug: string;
1096
+ role_desc: string;
1097
+ role_featuresRoles: Array<IRoleFeature>;
1098
+ }
1099
+
1100
+ interface IUserRole extends BoInterfaceModelsCommon.IBaseModel {
1101
+ user: string | IUser;
1102
+ role: string | IRole;
1103
+ }
1104
+
1105
+ type index$8_IAuthLogin = IAuthLogin;
1106
+ type index$8_IAuthResetPassword = IAuthResetPassword;
1107
+ type index$8_IOtpConfirm = IOtpConfirm;
1108
+ type index$8_IOtpCreateSession = IOtpCreateSession;
1109
+ type index$8_IOtpSend = IOtpSend;
1110
+ type index$8_IRole = IRole;
1111
+ type index$8_IRoleFeature = IRoleFeature;
1112
+ type index$8_IToken = IToken;
1113
+ type index$8_IUser = IUser;
1114
+ type index$8_IUserRole = IUserRole;
1115
+ declare namespace index$8 {
1116
+ export type { index$8_IAuthLogin as IAuthLogin, index$8_IAuthResetPassword as IAuthResetPassword, index$8_IOtpConfirm as IOtpConfirm, index$8_IOtpCreateSession as IOtpCreateSession, index$8_IOtpSend as IOtpSend, index$8_IRole as IRole, index$8_IRoleFeature as IRoleFeature, index$8_IToken as IToken, index$8_IUser as IUser, index$8_IUserRole as IUserRole };
1117
+ }
1118
+
1119
+ interface ILogTaskAIContent extends IBaseModel, ITrackingModel<IUser> {
1120
+ sheetName: string;
1121
+ sheetUrl: string;
1122
+ rowId: string;
1123
+ col: string;
1124
+ input: string;
1125
+ output: string;
1126
+ keyWords: string;
1127
+ model: string;
1128
+ versionModel: string;
1129
+ channelName: string;
1130
+ channelURL: string;
1131
+ status: EStatusTaskAIContent;
1132
+ }
1133
+
1134
+ interface IManagerSheetGroup extends IBaseModel, ITrackingModel<IUser> {
1135
+ name: string;
1136
+ slug: string;
1137
+ }
1138
+
1139
+ interface IManagerSheet extends IBaseModel, ITrackingModel<IUser> {
1140
+ key: string;
1141
+ typeSocial: ETypeSocial;
1142
+ group: string | IManagerSheetGroup;
1143
+ standardColumn: string;
1144
+ url: string;
1145
+ name: string;
1146
+ isActive: boolean;
1147
+ }
1148
+
1018
1149
  interface IManagerWork extends IBaseModel, ITrackingModel<IUser> {
1019
1150
  mw_name: string;
1020
1151
  mw_user: string | IUser;
@@ -1119,24 +1250,6 @@ interface ITeam extends IBaseModel, ITrackingModel<IUser> {
1119
1250
  status: EStatusTeam;
1120
1251
  }
1121
1252
 
1122
- /**
1123
- *
1124
- * !rf_sources: "blogs" => keyof AllFeaturesRoutes
1125
- * !rf_actions: ["Manager"] => Accepts all actions; Array<ERoleActions>
1126
- * !rf_attributes: <typeof Entity>{} Accepts all fields will be can update, except user_name;
1127
- */
1128
- interface IRoleFeature {
1129
- source: string;
1130
- actions: Array<string>;
1131
- attributes: object;
1132
- }
1133
- interface IRole extends IBaseModel, ITrackingModel<IUser> {
1134
- role_name: string;
1135
- role_slug: string;
1136
- role_desc: string;
1137
- role_featuresRoles: Array<IRoleFeature>;
1138
- }
1139
-
1140
1253
  interface ITeamRole extends IBaseModel, ITrackingModel<IUser> {
1141
1254
  team: string | ITeam;
1142
1255
  role: string | IRole;
@@ -1234,149 +1347,34 @@ interface IImage extends IBaseModel, ITrackingModel<IUser> {
1234
1347
  image_heigh: number;
1235
1348
  }
1236
1349
 
1237
- type index$9_IBlog = IBlog;
1238
- type index$9_IBlogsCategory = IBlogsCategory;
1239
- type index$9_IDepartment = IDepartment;
1240
- type index$9_IDepartmentRole = IDepartmentRole;
1241
- type index$9_IDomain = IDomain;
1242
- type index$9_IImage = IImage;
1243
- type index$9_ILark = ILark;
1244
- type index$9_IManagerWork = IManagerWork;
1245
- type index$9_IManagerWorkPin = IManagerWorkPin;
1246
- type index$9_ISheetWork = ISheetWork;
1247
- type index$9_ISheetWorkManager = ISheetWorkManager;
1248
- type index$9_ISheetWorkPin = ISheetWorkPin;
1249
- type index$9_ISheetWorksCategory = ISheetWorksCategory;
1250
- type index$9_ITag = ITag;
1251
- type index$9_ITaskJob = ITaskJob;
1252
- type index$9_ITaskJobBlogAttached = ITaskJobBlogAttached;
1253
- type index$9_ITaskJobCheckList = ITaskJobCheckList;
1254
- type index$9_ITaskJobDepartmentPermission = ITaskJobDepartmentPermission;
1255
- type index$9_ITaskJobDiscuss = ITaskJobDiscuss;
1256
- type index$9_ITaskJobLabel = ITaskJobLabel;
1257
- type index$9_ITaskJobTeamPermission = ITaskJobTeamPermission;
1258
- type index$9_ITaskJobUserPermission = ITaskJobUserPermission;
1259
- type index$9_ITaskJobsGroup = ITaskJobsGroup;
1260
- type index$9_ITeam = ITeam;
1261
- type index$9_ITeamMember = ITeamMember;
1262
- type index$9_ITeamRole = ITeamRole;
1263
- declare namespace index$9 {
1264
- export type { index$9_IBlog as IBlog, index$9_IBlogsCategory as IBlogsCategory, index$9_IDepartment as IDepartment, index$9_IDepartmentRole as IDepartmentRole, index$9_IDomain as IDomain, index$9_IImage as IImage, index$9_ILark as ILark, index$9_IManagerWork as IManagerWork, index$9_IManagerWorkPin as IManagerWorkPin, index$9_ISheetWork as ISheetWork, index$9_ISheetWorkManager as ISheetWorkManager, index$9_ISheetWorkPin as ISheetWorkPin, index$9_ISheetWorksCategory as ISheetWorksCategory, index$9_ITag as ITag, index$9_ITaskJob as ITaskJob, index$9_ITaskJobBlogAttached as ITaskJobBlogAttached, index$9_ITaskJobCheckList as ITaskJobCheckList, index$9_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, index$9_ITaskJobDiscuss as ITaskJobDiscuss, index$9_ITaskJobLabel as ITaskJobLabel, index$9_ITaskJobTeamPermission as ITaskJobTeamPermission, index$9_ITaskJobUserPermission as ITaskJobUserPermission, index$9_ITaskJobsGroup as ITaskJobsGroup, index$9_ITeam as ITeam, index$9_ITeamMember as ITeamMember, index$9_ITeamRole as ITeamRole };
1265
- }
1266
-
1267
- interface IBaseModel {
1268
- id: string;
1269
- createdAt: Date;
1270
- updatedAt: Date;
1271
- version: number;
1272
- }
1273
- interface ITrackingModel<T> {
1274
- createdBy: T | string;
1275
- updatedBy?: T | string;
1276
- team?: ITeam | string;
1277
- department?: IDepartment | string;
1278
- }
1279
-
1280
- interface IFile extends IBaseModel, ITrackingModel<IUser> {
1281
- name: string;
1282
- path: string;
1283
- size: number;
1284
- type: string;
1285
- md5: string;
1286
- url: string;
1287
- isDraft: boolean;
1288
- }
1289
-
1290
- type index$8_IBaseModel = IBaseModel;
1291
- type index$8_IFile = IFile;
1292
- type index$8_ITrackingModel<T> = ITrackingModel<T>;
1293
- declare namespace index$8 {
1294
- export type { index$8_IBaseModel as IBaseModel, index$8_IFile as IFile, index$8_ITrackingModel as ITrackingModel };
1295
- }
1296
-
1297
- interface IUser extends IBaseModel, ITrackingModel<IUser> {
1298
- user_avatar: string;
1299
- user_fullName: string;
1300
- user_email: string;
1301
- user_phone: string;
1302
- user_password: string;
1303
- user_gender: string;
1304
- user_attachmentAccountIdLark: string;
1305
- user_attachmentAccountNameLark: string;
1306
- user_department: IDepartment | string;
1307
- user_isRootAdmin: boolean;
1308
- user_isSubAdmin: boolean;
1309
- user_isBlocked: boolean;
1310
- }
1311
-
1312
- interface IAuthLogin extends Pick<IUser, 'user_email' | 'user_password'> {
1313
- user_key: string;
1314
- }
1315
- interface IAuthResetPassword extends Pick<IUser, 'user_email' | 'user_password'> {
1316
- user_confirmPassword: string;
1317
- }
1318
-
1319
- interface IToken extends BoInterfaceModelsCommon.IBaseModel {
1320
- token_secretKey: string;
1321
- token_code: string;
1322
- token_user: IUser | string;
1323
- }
1324
-
1325
- interface IOtpCreateSession extends Pick<IUser, 'user_email'> {
1326
- }
1327
- interface IOtpSend extends Pick<IUser, 'user_email'> {
1328
- }
1329
- interface IOtpConfirm extends Pick<IUser, 'user_email'> {
1330
- otp: string;
1331
- }
1332
-
1333
- interface IUserRole extends BoInterfaceModelsCommon.IBaseModel {
1334
- user: string | IUser;
1335
- role: string | IRole;
1336
- }
1337
-
1338
- type index$7_IAuthLogin = IAuthLogin;
1339
- type index$7_IAuthResetPassword = IAuthResetPassword;
1340
- type index$7_IOtpConfirm = IOtpConfirm;
1341
- type index$7_IOtpCreateSession = IOtpCreateSession;
1342
- type index$7_IOtpSend = IOtpSend;
1343
- type index$7_IRole = IRole;
1344
- type index$7_IRoleFeature = IRoleFeature;
1345
- type index$7_IToken = IToken;
1346
- type index$7_IUser = IUser;
1347
- type index$7_IUserRole = IUserRole;
1350
+ type index$7_IBlog = IBlog;
1351
+ type index$7_IBlogsCategory = IBlogsCategory;
1352
+ type index$7_IDepartment = IDepartment;
1353
+ type index$7_IDepartmentRole = IDepartmentRole;
1354
+ type index$7_IDomain = IDomain;
1355
+ type index$7_IImage = IImage;
1356
+ type index$7_ILark = ILark;
1357
+ type index$7_IManagerWork = IManagerWork;
1358
+ type index$7_IManagerWorkPin = IManagerWorkPin;
1359
+ type index$7_ISheetWork = ISheetWork;
1360
+ type index$7_ISheetWorkManager = ISheetWorkManager;
1361
+ type index$7_ISheetWorkPin = ISheetWorkPin;
1362
+ type index$7_ISheetWorksCategory = ISheetWorksCategory;
1363
+ type index$7_ITag = ITag;
1364
+ type index$7_ITaskJob = ITaskJob;
1365
+ type index$7_ITaskJobBlogAttached = ITaskJobBlogAttached;
1366
+ type index$7_ITaskJobCheckList = ITaskJobCheckList;
1367
+ type index$7_ITaskJobDepartmentPermission = ITaskJobDepartmentPermission;
1368
+ type index$7_ITaskJobDiscuss = ITaskJobDiscuss;
1369
+ type index$7_ITaskJobLabel = ITaskJobLabel;
1370
+ type index$7_ITaskJobTeamPermission = ITaskJobTeamPermission;
1371
+ type index$7_ITaskJobUserPermission = ITaskJobUserPermission;
1372
+ type index$7_ITaskJobsGroup = ITaskJobsGroup;
1373
+ type index$7_ITeam = ITeam;
1374
+ type index$7_ITeamMember = ITeamMember;
1375
+ type index$7_ITeamRole = ITeamRole;
1348
1376
  declare namespace index$7 {
1349
- export type { index$7_IAuthLogin as IAuthLogin, index$7_IAuthResetPassword as IAuthResetPassword, index$7_IOtpConfirm as IOtpConfirm, index$7_IOtpCreateSession as IOtpCreateSession, index$7_IOtpSend as IOtpSend, index$7_IRole as IRole, index$7_IRoleFeature as IRoleFeature, index$7_IToken as IToken, index$7_IUser as IUser, index$7_IUserRole as IUserRole };
1350
- }
1351
-
1352
- interface ILogTaskAIContent extends IBaseModel, ITrackingModel<IUser> {
1353
- sheetName: string;
1354
- sheetUrl: string;
1355
- rowId: string;
1356
- col: string;
1357
- input: string;
1358
- output: string;
1359
- keyWords: string;
1360
- model: string;
1361
- versionModel: string;
1362
- channelName: string;
1363
- channelURL: string;
1364
- status: EStatusTaskAIContent;
1365
- }
1366
-
1367
- interface IManagerSheetGroup extends IBaseModel, ITrackingModel<IUser> {
1368
- name: string;
1369
- slug: string;
1370
- }
1371
-
1372
- interface IManagerSheet extends IBaseModel, ITrackingModel<IUser> {
1373
- key: string;
1374
- typeSocial: ETypeSocial;
1375
- group: string | IManagerSheetGroup;
1376
- standardColumn: string;
1377
- url: string;
1378
- name: string;
1379
- isActive: boolean;
1377
+ export type { index$7_IBlog as IBlog, index$7_IBlogsCategory as IBlogsCategory, index$7_IDepartment as IDepartment, index$7_IDepartmentRole as IDepartmentRole, index$7_IDomain as IDomain, index$7_IImage as IImage, index$7_ILark as ILark, index$7_IManagerWork as IManagerWork, index$7_IManagerWorkPin as IManagerWorkPin, index$7_ISheetWork as ISheetWork, index$7_ISheetWorkManager as ISheetWorkManager, index$7_ISheetWorkPin as ISheetWorkPin, index$7_ISheetWorksCategory as ISheetWorksCategory, index$7_ITag as ITag, index$7_ITaskJob as ITaskJob, index$7_ITaskJobBlogAttached as ITaskJobBlogAttached, index$7_ITaskJobCheckList as ITaskJobCheckList, index$7_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, index$7_ITaskJobDiscuss as ITaskJobDiscuss, index$7_ITaskJobLabel as ITaskJobLabel, index$7_ITaskJobTeamPermission as ITaskJobTeamPermission, index$7_ITaskJobUserPermission as ITaskJobUserPermission, index$7_ITaskJobsGroup as ITaskJobsGroup, index$7_ITeam as ITeam, index$7_ITeamMember as ITeamMember, index$7_ITeamRole as ITeamRole };
1380
1378
  }
1381
1379
 
1382
1380
  interface IAccountAIChannel extends IBaseModel, ITrackingModel<IUser> {
@@ -2884,7 +2882,7 @@ type index$1_IVoiceLanguage = IVoiceLanguage;
2884
2882
  type index$1_IVoiceSettingDelay = IVoiceSettingDelay;
2885
2883
  type index$1_IVoiceStores = IVoiceStores;
2886
2884
  declare namespace index$1 {
2887
- export { index$7 as Auth, index$8 as Common, type index$1_IAccount as IAccount, type index$1_IAccountAI as IAccountAI, type index$1_IAccountAIChannel as IAccountAIChannel, type index$1_IAccountAIGroup as IAccountAIGroup, type index$1_IAccountAIImage as IAccountAIImage, type index$1_IAccountAIImageChannel as IAccountAIImageChannel, type index$1_IAccountAIImageGroup as IAccountAIImageGroup, type index$1_IAccountAIImageInfo as IAccountAIImageInfo, type index$1_IAccountAIImageTag as IAccountAIImageTag, type index$1_IAccountAIInfo as IAccountAIInfo, type index$1_IAccountAITag as IAccountAITag, type index$1_IAccountAIVoice as IAccountAIVoice, type index$1_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$1_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$1_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$1_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$1_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$1_IAccountCanva as IAccountCanva, type index$1_IAccountDrive as IAccountDrive, type index$1_IAccountEmail as IAccountEmail, type index$1_IAccountEmailProxy as IAccountEmailProxy, type index$1_IAccountEmailTag as IAccountEmailTag, type index$1_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$1_IAccountRaw as IAccountRaw, type index$1_IAccountVPN as IAccountVPN, type index$1_IAccountVPS as IAccountVPS, type index$1_IAccountVPSGroup as IAccountVPSGroup, type index$1_IAccountsGroup as IAccountsGroup, type index$1_IAuthLogin as IAuthLogin, type index$1_IAuthResetPassword as IAuthResetPassword, type index$1_IBaseModel as IBaseModel, type index$1_IBlog as IBlog, type index$1_IBlogsCategory as IBlogsCategory, type index$1_IDepartment as IDepartment, type index$1_IDepartmentRole as IDepartmentRole, type index$1_IDevice as IDevice, type index$1_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$1_IDeviceSettingForCHPlay as IDeviceSettingForCHPlay, type index$1_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$1_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$1_IDomain as IDomain, type index$1_IFile as IFile, type index$1_IIdea as IIdea, type index$1_IImage as IImage, type index$1_IInstagramInteractExplore as IInstagramInteractExplore, type index$1_IInstagramInteractFollower as IInstagramInteractFollower, type index$1_IInstagramInteractFollowing as IInstagramInteractFollowing, type index$1_IInstagramInteractReel as IInstagramInteractReel, type index$1_IInstagramInteractReplyComment as IInstagramInteractReplyComment, type index$1_IInstagramInteractReplyMessage as IInstagramInteractReplyMessage, type index$1_IInstagramInteractStory as IInstagramInteractStory, type index$1_IInstagramPostHighLight as IInstagramPostHighLight, type index$1_IInstagramPostNew as IInstagramPostNew, type index$1_IInstagramPostReel as IInstagramPostReel, type index$1_IInstagramPostStory as IInstagramPostStory, type index$1_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$1_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$1_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$1_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$1_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$1_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$1_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$1_IInstagramSettingPost as IInstagramSettingPost, type index$1_IInteractSentMessageDetail as IInteractSentMessageDetail, type index$1_ILark as ILark, type index$1_ILogTaskAIContent as ILogTaskAIContent, type index$1_ILogTaskAIImageVoiceCanva as ILogTaskAIImageVoiceCanva, type index$1_IManagerImageAI as IManagerImageAI, type index$1_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$1_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$1_IManagerSheet as IManagerSheet, type index$1_IManagerSheetChildren as IManagerSheetChildren, type index$1_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$1_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$1_IManagerSheetGroup as IManagerSheetGroup, type index$1_IManagerWork as IManagerWork, type index$1_IManagerWorkPin as IManagerWorkPin, type index$1_INiche as INiche, type index$1_IOtpConfirm as IOtpConfirm, type index$1_IOtpCreateSession as IOtpCreateSession, type index$1_IOtpSend as IOtpSend, type index$1_IPC as IPC, type index$1_IProxy as IProxy, type index$1_IRole as IRole, type index$1_IRoleFeature as IRoleFeature, type index$1_ISheetWork as ISheetWork, type index$1_ISheetWorkManager as ISheetWorkManager, type index$1_ISheetWorkPin as ISheetWorkPin, type index$1_ISheetWorksCategory as ISheetWorksCategory, type index$1_ISheetsTool as ISheetsTool, type index$1_ITag as ITag, type index$1_ITaskJob as ITaskJob, type index$1_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$1_ITaskJobCheckList as ITaskJobCheckList, type index$1_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$1_ITaskJobDiscuss as ITaskJobDiscuss, type index$1_ITaskJobLabel as ITaskJobLabel, type index$1_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$1_ITaskJobUserPermission as ITaskJobUserPermission, type index$1_ITaskJobsGroup as ITaskJobsGroup, type index$1_ITeam as ITeam, type index$1_ITeamMember as ITeamMember, type index$1_ITeamRole as ITeamRole, type index$1_IThreadsInteractFollower as IThreadsInteractFollower, type index$1_IThreadsInteractFollowing as IThreadsInteractFollowing, type index$1_IThreadsInteractReplyComment as IThreadsInteractReplyComment, type index$1_IThreadsInteractReplyMessage as IThreadsInteractReplyMessage, type index$1_IThreadsPostNew as IThreadsPostNew, type index$1_IThreadsSettingPost as IThreadsSettingPost, type index$1_IToken as IToken, type index$1_ITrackingModel as ITrackingModel, type index$1_ITrackingScriptExecuted as ITrackingScriptExecuted, type index$1_IUser as IUser, type index$1_IUserRole as IUserRole, type index$1_IVoiceGenerated as IVoiceGenerated, type index$1_IVoiceLanguage as IVoiceLanguage, type index$1_IVoiceSettingDelay as IVoiceSettingDelay, type index$1_IVoiceStores as IVoiceStores, index$3 as Logs, index$2 as Socials, index$5 as TaskBrowsers, index$6 as TaskPhones, index$4 as Tool, index$9 as Web };
2885
+ export { index$8 as Auth, index$9 as Common, type index$1_IAccount as IAccount, type index$1_IAccountAI as IAccountAI, type index$1_IAccountAIChannel as IAccountAIChannel, type index$1_IAccountAIGroup as IAccountAIGroup, type index$1_IAccountAIImage as IAccountAIImage, type index$1_IAccountAIImageChannel as IAccountAIImageChannel, type index$1_IAccountAIImageGroup as IAccountAIImageGroup, type index$1_IAccountAIImageInfo as IAccountAIImageInfo, type index$1_IAccountAIImageTag as IAccountAIImageTag, type index$1_IAccountAIInfo as IAccountAIInfo, type index$1_IAccountAITag as IAccountAITag, type index$1_IAccountAIVoice as IAccountAIVoice, type index$1_IAccountAIVoiceChannel as IAccountAIVoiceChannel, type index$1_IAccountAIVoiceGroup as IAccountAIVoiceGroup, type index$1_IAccountAIVoiceInfo as IAccountAIVoiceInfo, type index$1_IAccountAIVoiceTag as IAccountAIVoiceTag, type index$1_IAccountCHPlayICloud as IAccountCHPlayICloud, type index$1_IAccountCanva as IAccountCanva, type index$1_IAccountDrive as IAccountDrive, type index$1_IAccountEmail as IAccountEmail, type index$1_IAccountEmailProxy as IAccountEmailProxy, type index$1_IAccountEmailTag as IAccountEmailTag, type index$1_IAccountEmailTaskWork as IAccountEmailTaskWork, type index$1_IAccountRaw as IAccountRaw, type index$1_IAccountVPN as IAccountVPN, type index$1_IAccountVPS as IAccountVPS, type index$1_IAccountVPSGroup as IAccountVPSGroup, type index$1_IAccountsGroup as IAccountsGroup, type index$1_IAuthLogin as IAuthLogin, type index$1_IAuthResetPassword as IAuthResetPassword, type index$1_IBaseModel as IBaseModel, type index$1_IBlog as IBlog, type index$1_IBlogsCategory as IBlogsCategory, type index$1_IDepartment as IDepartment, type index$1_IDepartmentRole as IDepartmentRole, type index$1_IDevice as IDevice, type index$1_IDeviceSettingForAccount as IDeviceSettingForAccount, type index$1_IDeviceSettingForCHPlay as IDeviceSettingForCHPlay, type index$1_IDeviceSettingForProxy as IDeviceSettingForProxy, type index$1_IDeviceSettingForVPN as IDeviceSettingForVPN, type index$1_IDomain as IDomain, type index$1_IFile as IFile, type index$1_IIdea as IIdea, type index$1_IImage as IImage, type index$1_IInstagramInteractExplore as IInstagramInteractExplore, type index$1_IInstagramInteractFollower as IInstagramInteractFollower, type index$1_IInstagramInteractFollowing as IInstagramInteractFollowing, type index$1_IInstagramInteractReel as IInstagramInteractReel, type index$1_IInstagramInteractReplyComment as IInstagramInteractReplyComment, type index$1_IInstagramInteractReplyMessage as IInstagramInteractReplyMessage, type index$1_IInstagramInteractStory as IInstagramInteractStory, type index$1_IInstagramPostHighLight as IInstagramPostHighLight, type index$1_IInstagramPostNew as IInstagramPostNew, type index$1_IInstagramPostReel as IInstagramPostReel, type index$1_IInstagramPostStory as IInstagramPostStory, type index$1_IInstagramSettingInteractExplore as IInstagramSettingInteractExplore, type index$1_IInstagramSettingInteractFollow as IInstagramSettingInteractFollow, type index$1_IInstagramSettingInteractReel as IInstagramSettingInteractReel, type index$1_IInstagramSettingInteractReplyComment as IInstagramSettingInteractReplyComment, type index$1_IInstagramSettingInteractReplyMessage as IInstagramSettingInteractReplyMessage, type index$1_IInstagramSettingInteractStory as IInstagramSettingInteractStory, type index$1_IInstagramSettingInteractUnFollow as IInstagramSettingInteractUnFollow, type index$1_IInstagramSettingPost as IInstagramSettingPost, type index$1_IInteractSentMessageDetail as IInteractSentMessageDetail, type index$1_ILark as ILark, type index$1_ILogTaskAIContent as ILogTaskAIContent, type index$1_ILogTaskAIImageVoiceCanva as ILogTaskAIImageVoiceCanva, type index$1_IManagerImageAI as IManagerImageAI, type index$1_IManagerImageAIItemStore as IManagerImageAIItemStore, type index$1_IManagerImageAIUserAttached as IManagerImageAIUserAttached, type index$1_IManagerSheet as IManagerSheet, type index$1_IManagerSheetChildren as IManagerSheetChildren, type index$1_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, type index$1_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, type index$1_IManagerSheetGroup as IManagerSheetGroup, type index$1_IManagerWork as IManagerWork, type index$1_IManagerWorkPin as IManagerWorkPin, type index$1_INiche as INiche, type index$1_IOtpConfirm as IOtpConfirm, type index$1_IOtpCreateSession as IOtpCreateSession, type index$1_IOtpSend as IOtpSend, type index$1_IPC as IPC, type index$1_IProxy as IProxy, type index$1_IRole as IRole, type index$1_IRoleFeature as IRoleFeature, type index$1_ISheetWork as ISheetWork, type index$1_ISheetWorkManager as ISheetWorkManager, type index$1_ISheetWorkPin as ISheetWorkPin, type index$1_ISheetWorksCategory as ISheetWorksCategory, type index$1_ISheetsTool as ISheetsTool, type index$1_ITag as ITag, type index$1_ITaskJob as ITaskJob, type index$1_ITaskJobBlogAttached as ITaskJobBlogAttached, type index$1_ITaskJobCheckList as ITaskJobCheckList, type index$1_ITaskJobDepartmentPermission as ITaskJobDepartmentPermission, type index$1_ITaskJobDiscuss as ITaskJobDiscuss, type index$1_ITaskJobLabel as ITaskJobLabel, type index$1_ITaskJobTeamPermission as ITaskJobTeamPermission, type index$1_ITaskJobUserPermission as ITaskJobUserPermission, type index$1_ITaskJobsGroup as ITaskJobsGroup, type index$1_ITeam as ITeam, type index$1_ITeamMember as ITeamMember, type index$1_ITeamRole as ITeamRole, type index$1_IThreadsInteractFollower as IThreadsInteractFollower, type index$1_IThreadsInteractFollowing as IThreadsInteractFollowing, type index$1_IThreadsInteractReplyComment as IThreadsInteractReplyComment, type index$1_IThreadsInteractReplyMessage as IThreadsInteractReplyMessage, type index$1_IThreadsPostNew as IThreadsPostNew, type index$1_IThreadsSettingPost as IThreadsSettingPost, type index$1_IToken as IToken, type index$1_ITrackingModel as ITrackingModel, type index$1_ITrackingScriptExecuted as ITrackingScriptExecuted, type index$1_IUser as IUser, type index$1_IUserRole as IUserRole, type index$1_IVoiceGenerated as IVoiceGenerated, type index$1_IVoiceLanguage as IVoiceLanguage, type index$1_IVoiceSettingDelay as IVoiceSettingDelay, type index$1_IVoiceStores as IVoiceStores, index$3 as Logs, index$2 as Socials, index$5 as TaskBrowsers, index$6 as TaskPhones, index$4 as Tool, index$7 as Web };
2888
2886
  }
2889
2887
 
2890
2888
  interface IDataUser {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "5.0.118",
3
+ "version": "5.0.119",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",