automation-lib 4.9.75 → 4.9.77
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 +60 -55
- package/dist/index.d.ts +60 -55
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1224,13 +1224,70 @@ interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceMo
|
|
|
1224
1224
|
}
|
|
1225
1225
|
|
|
1226
1226
|
interface IManagerImageAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1227
|
-
file: IFile | string;
|
|
1228
1227
|
model: EAIModelImage;
|
|
1229
1228
|
idea: IManagerWork | string;
|
|
1230
1229
|
niche: IManagerWork | string;
|
|
1231
1230
|
folder: EFolderImageAI;
|
|
1232
1231
|
}
|
|
1233
1232
|
|
|
1233
|
+
interface IManagerImageAIItemStore extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1234
|
+
managerImage: IManagerImageAI;
|
|
1235
|
+
file: IFile | string;
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
interface IManagerSheetGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1239
|
+
name: string;
|
|
1240
|
+
slug: string;
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
interface IManagerSheet extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1244
|
+
key: string;
|
|
1245
|
+
group: string | IManagerSheetGroup;
|
|
1246
|
+
standardColumn: string;
|
|
1247
|
+
url: string;
|
|
1248
|
+
name: string;
|
|
1249
|
+
isActive: boolean;
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
interface IManagerSheetChildren extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1253
|
+
managerSheet: string | IManagerSheet;
|
|
1254
|
+
name: string;
|
|
1255
|
+
accountAI: string | IAccountAI;
|
|
1256
|
+
listColumnActions: Array<{
|
|
1257
|
+
columnSymbol: string;
|
|
1258
|
+
columnName: string;
|
|
1259
|
+
}>;
|
|
1260
|
+
isActive: boolean;
|
|
1261
|
+
info: {
|
|
1262
|
+
numberCol: number;
|
|
1263
|
+
numberRow: number;
|
|
1264
|
+
numberTaskPending: number;
|
|
1265
|
+
numberTaskError: number;
|
|
1266
|
+
numberTaskDone: number;
|
|
1267
|
+
timeReadMaximum: number;
|
|
1268
|
+
};
|
|
1269
|
+
numberExecute: number;
|
|
1270
|
+
numberHourForExecute: number;
|
|
1271
|
+
}
|
|
1272
|
+
|
|
1273
|
+
interface IManagerSheetChildrenGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1274
|
+
sheetChildren: string | IManagerSheetChildren;
|
|
1275
|
+
name: string;
|
|
1276
|
+
slug: string;
|
|
1277
|
+
order: number;
|
|
1278
|
+
listChannelsAI: string[] | IAccountAIChannel[];
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
interface IManagerSheetChildrenGroupItem extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1282
|
+
group: string | IManagerSheetChildrenGroup;
|
|
1283
|
+
order: number;
|
|
1284
|
+
columnSymbol: string;
|
|
1285
|
+
columnName: string;
|
|
1286
|
+
columnType: ETypeColumnManagerWork;
|
|
1287
|
+
keyWords: string;
|
|
1288
|
+
keyWordsBlank: string;
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1234
1291
|
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1235
1292
|
name: string;
|
|
1236
1293
|
slug: string;
|
|
@@ -1276,41 +1333,6 @@ interface ITaskTool extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModel
|
|
|
1276
1333
|
task_note: string;
|
|
1277
1334
|
}
|
|
1278
1335
|
|
|
1279
|
-
interface IManagerSheetGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1280
|
-
name: string;
|
|
1281
|
-
slug: string;
|
|
1282
|
-
}
|
|
1283
|
-
|
|
1284
|
-
interface IManagerSheet extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1285
|
-
key: string;
|
|
1286
|
-
group: string | IManagerSheetGroup;
|
|
1287
|
-
standardColumn: string;
|
|
1288
|
-
url: string;
|
|
1289
|
-
name: string;
|
|
1290
|
-
isActive: boolean;
|
|
1291
|
-
}
|
|
1292
|
-
|
|
1293
|
-
interface IManagerSheetChildren extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1294
|
-
managerSheet: string | IManagerSheet;
|
|
1295
|
-
name: string;
|
|
1296
|
-
accountAI: string | IAccountAI;
|
|
1297
|
-
listColumnActions: Array<{
|
|
1298
|
-
columnSymbol: string;
|
|
1299
|
-
columnName: string;
|
|
1300
|
-
}>;
|
|
1301
|
-
isActive: boolean;
|
|
1302
|
-
info: {
|
|
1303
|
-
numberCol: number;
|
|
1304
|
-
numberRow: number;
|
|
1305
|
-
numberTaskPending: number;
|
|
1306
|
-
numberTaskError: number;
|
|
1307
|
-
numberTaskDone: number;
|
|
1308
|
-
timeReadMaximum: number;
|
|
1309
|
-
};
|
|
1310
|
-
numberExecute: number;
|
|
1311
|
-
numberHourForExecute: number;
|
|
1312
|
-
}
|
|
1313
|
-
|
|
1314
1336
|
interface ITaskAIItemAction {
|
|
1315
1337
|
order: number;
|
|
1316
1338
|
keyWords: string;
|
|
@@ -1407,24 +1429,6 @@ interface IVoiceSettingDelay extends BoInterfaceModelsCommon.IBaseModel, BoInter
|
|
|
1407
1429
|
vsd_timeDelay: number;
|
|
1408
1430
|
}
|
|
1409
1431
|
|
|
1410
|
-
interface IManagerSheetChildrenGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1411
|
-
sheetChildren: string | IManagerSheetChildren;
|
|
1412
|
-
name: string;
|
|
1413
|
-
slug: string;
|
|
1414
|
-
order: number;
|
|
1415
|
-
listChannelsAI: string[] | IAccountAIChannel[];
|
|
1416
|
-
}
|
|
1417
|
-
|
|
1418
|
-
interface IManagerSheetChildrenGroupItem extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1419
|
-
group: string | IManagerSheetChildrenGroup;
|
|
1420
|
-
order: number;
|
|
1421
|
-
columnSymbol: string;
|
|
1422
|
-
columnName: string;
|
|
1423
|
-
columnType: ETypeColumnManagerWork;
|
|
1424
|
-
keyWords: string;
|
|
1425
|
-
keyWordsBlank: string;
|
|
1426
|
-
}
|
|
1427
|
-
|
|
1428
1432
|
type index$4_IAccount = IAccount;
|
|
1429
1433
|
type index$4_IAccountAI = IAccountAI;
|
|
1430
1434
|
type index$4_IAccountAIChannel = IAccountAIChannel;
|
|
@@ -1459,6 +1463,7 @@ type index$4_IDeviceSetting = IDeviceSetting;
|
|
|
1459
1463
|
type index$4_IHistoryCanva = IHistoryCanva;
|
|
1460
1464
|
type index$4_ILogging = ILogging;
|
|
1461
1465
|
type index$4_IManagerImageAI = IManagerImageAI;
|
|
1466
|
+
type index$4_IManagerImageAIItemStore = IManagerImageAIItemStore;
|
|
1462
1467
|
type index$4_IManagerSheet = IManagerSheet;
|
|
1463
1468
|
type index$4_IManagerSheetChildren = IManagerSheetChildren;
|
|
1464
1469
|
type index$4_IManagerSheetChildrenGroup = IManagerSheetChildrenGroup;
|
|
@@ -1480,7 +1485,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1480
1485
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1481
1486
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1482
1487
|
declare namespace index$4 {
|
|
1483
|
-
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountAIImage as IAccountAIImage, index$4_IAccountAIImageChannel as IAccountAIImageChannel, index$4_IAccountAIImageGroup as IAccountAIImageGroup, index$4_IAccountAIImageInfo as IAccountAIImageInfo, index$4_IAccountAIImageTag as IAccountAIImageTag, index$4_IAccountAIInfo as IAccountAIInfo, index$4_IAccountAITag as IAccountAITag, index$4_IAccountAIVoice as IAccountAIVoice, index$4_IAccountAIVoiceChannel as IAccountAIVoiceChannel, index$4_IAccountAIVoiceGroup as IAccountAIVoiceGroup, index$4_IAccountAIVoiceInfo as IAccountAIVoiceInfo, index$4_IAccountAIVoiceTag as IAccountAIVoiceTag, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountEmail as IAccountEmail, index$4_IAccountEmailProxy as IAccountEmailProxy, index$4_IAccountEmailTag as IAccountEmailTag, index$4_IAccountEmailTaskWork as IAccountEmailTaskWork, index$4_IAccountVPS as IAccountVPS, index$4_IAccountVPSGroup as IAccountVPSGroup, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IManagerImageAI as IManagerImageAI, index$4_IManagerSheet as IManagerSheet, index$4_IManagerSheetChildren as IManagerSheetChildren, index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$4_IManagerSheetGroup as IManagerSheetGroup, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskAI as ITaskAI, index$4_ITaskAIItemAction as ITaskAIItemAction, index$4_ITaskAIItemGroup as ITaskAIItemGroup, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1488
|
+
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountAIImage as IAccountAIImage, index$4_IAccountAIImageChannel as IAccountAIImageChannel, index$4_IAccountAIImageGroup as IAccountAIImageGroup, index$4_IAccountAIImageInfo as IAccountAIImageInfo, index$4_IAccountAIImageTag as IAccountAIImageTag, index$4_IAccountAIInfo as IAccountAIInfo, index$4_IAccountAITag as IAccountAITag, index$4_IAccountAIVoice as IAccountAIVoice, index$4_IAccountAIVoiceChannel as IAccountAIVoiceChannel, index$4_IAccountAIVoiceGroup as IAccountAIVoiceGroup, index$4_IAccountAIVoiceInfo as IAccountAIVoiceInfo, index$4_IAccountAIVoiceTag as IAccountAIVoiceTag, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountEmail as IAccountEmail, index$4_IAccountEmailProxy as IAccountEmailProxy, index$4_IAccountEmailTag as IAccountEmailTag, index$4_IAccountEmailTaskWork as IAccountEmailTaskWork, index$4_IAccountVPS as IAccountVPS, index$4_IAccountVPSGroup as IAccountVPSGroup, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IManagerImageAI as IManagerImageAI, index$4_IManagerImageAIItemStore as IManagerImageAIItemStore, index$4_IManagerSheet as IManagerSheet, index$4_IManagerSheetChildren as IManagerSheetChildren, index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$4_IManagerSheetGroup as IManagerSheetGroup, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskAI as ITaskAI, index$4_ITaskAIItemAction as ITaskAIItemAction, index$4_ITaskAIItemGroup as ITaskAIItemGroup, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1484
1489
|
}
|
|
1485
1490
|
|
|
1486
1491
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -1224,13 +1224,70 @@ interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceMo
|
|
|
1224
1224
|
}
|
|
1225
1225
|
|
|
1226
1226
|
interface IManagerImageAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1227
|
-
file: IFile | string;
|
|
1228
1227
|
model: EAIModelImage;
|
|
1229
1228
|
idea: IManagerWork | string;
|
|
1230
1229
|
niche: IManagerWork | string;
|
|
1231
1230
|
folder: EFolderImageAI;
|
|
1232
1231
|
}
|
|
1233
1232
|
|
|
1233
|
+
interface IManagerImageAIItemStore extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1234
|
+
managerImage: IManagerImageAI;
|
|
1235
|
+
file: IFile | string;
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
interface IManagerSheetGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1239
|
+
name: string;
|
|
1240
|
+
slug: string;
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
interface IManagerSheet extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1244
|
+
key: string;
|
|
1245
|
+
group: string | IManagerSheetGroup;
|
|
1246
|
+
standardColumn: string;
|
|
1247
|
+
url: string;
|
|
1248
|
+
name: string;
|
|
1249
|
+
isActive: boolean;
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
interface IManagerSheetChildren extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1253
|
+
managerSheet: string | IManagerSheet;
|
|
1254
|
+
name: string;
|
|
1255
|
+
accountAI: string | IAccountAI;
|
|
1256
|
+
listColumnActions: Array<{
|
|
1257
|
+
columnSymbol: string;
|
|
1258
|
+
columnName: string;
|
|
1259
|
+
}>;
|
|
1260
|
+
isActive: boolean;
|
|
1261
|
+
info: {
|
|
1262
|
+
numberCol: number;
|
|
1263
|
+
numberRow: number;
|
|
1264
|
+
numberTaskPending: number;
|
|
1265
|
+
numberTaskError: number;
|
|
1266
|
+
numberTaskDone: number;
|
|
1267
|
+
timeReadMaximum: number;
|
|
1268
|
+
};
|
|
1269
|
+
numberExecute: number;
|
|
1270
|
+
numberHourForExecute: number;
|
|
1271
|
+
}
|
|
1272
|
+
|
|
1273
|
+
interface IManagerSheetChildrenGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1274
|
+
sheetChildren: string | IManagerSheetChildren;
|
|
1275
|
+
name: string;
|
|
1276
|
+
slug: string;
|
|
1277
|
+
order: number;
|
|
1278
|
+
listChannelsAI: string[] | IAccountAIChannel[];
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
interface IManagerSheetChildrenGroupItem extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1282
|
+
group: string | IManagerSheetChildrenGroup;
|
|
1283
|
+
order: number;
|
|
1284
|
+
columnSymbol: string;
|
|
1285
|
+
columnName: string;
|
|
1286
|
+
columnType: ETypeColumnManagerWork;
|
|
1287
|
+
keyWords: string;
|
|
1288
|
+
keyWordsBlank: string;
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1234
1291
|
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1235
1292
|
name: string;
|
|
1236
1293
|
slug: string;
|
|
@@ -1276,41 +1333,6 @@ interface ITaskTool extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModel
|
|
|
1276
1333
|
task_note: string;
|
|
1277
1334
|
}
|
|
1278
1335
|
|
|
1279
|
-
interface IManagerSheetGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1280
|
-
name: string;
|
|
1281
|
-
slug: string;
|
|
1282
|
-
}
|
|
1283
|
-
|
|
1284
|
-
interface IManagerSheet extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1285
|
-
key: string;
|
|
1286
|
-
group: string | IManagerSheetGroup;
|
|
1287
|
-
standardColumn: string;
|
|
1288
|
-
url: string;
|
|
1289
|
-
name: string;
|
|
1290
|
-
isActive: boolean;
|
|
1291
|
-
}
|
|
1292
|
-
|
|
1293
|
-
interface IManagerSheetChildren extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1294
|
-
managerSheet: string | IManagerSheet;
|
|
1295
|
-
name: string;
|
|
1296
|
-
accountAI: string | IAccountAI;
|
|
1297
|
-
listColumnActions: Array<{
|
|
1298
|
-
columnSymbol: string;
|
|
1299
|
-
columnName: string;
|
|
1300
|
-
}>;
|
|
1301
|
-
isActive: boolean;
|
|
1302
|
-
info: {
|
|
1303
|
-
numberCol: number;
|
|
1304
|
-
numberRow: number;
|
|
1305
|
-
numberTaskPending: number;
|
|
1306
|
-
numberTaskError: number;
|
|
1307
|
-
numberTaskDone: number;
|
|
1308
|
-
timeReadMaximum: number;
|
|
1309
|
-
};
|
|
1310
|
-
numberExecute: number;
|
|
1311
|
-
numberHourForExecute: number;
|
|
1312
|
-
}
|
|
1313
|
-
|
|
1314
1336
|
interface ITaskAIItemAction {
|
|
1315
1337
|
order: number;
|
|
1316
1338
|
keyWords: string;
|
|
@@ -1407,24 +1429,6 @@ interface IVoiceSettingDelay extends BoInterfaceModelsCommon.IBaseModel, BoInter
|
|
|
1407
1429
|
vsd_timeDelay: number;
|
|
1408
1430
|
}
|
|
1409
1431
|
|
|
1410
|
-
interface IManagerSheetChildrenGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1411
|
-
sheetChildren: string | IManagerSheetChildren;
|
|
1412
|
-
name: string;
|
|
1413
|
-
slug: string;
|
|
1414
|
-
order: number;
|
|
1415
|
-
listChannelsAI: string[] | IAccountAIChannel[];
|
|
1416
|
-
}
|
|
1417
|
-
|
|
1418
|
-
interface IManagerSheetChildrenGroupItem extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1419
|
-
group: string | IManagerSheetChildrenGroup;
|
|
1420
|
-
order: number;
|
|
1421
|
-
columnSymbol: string;
|
|
1422
|
-
columnName: string;
|
|
1423
|
-
columnType: ETypeColumnManagerWork;
|
|
1424
|
-
keyWords: string;
|
|
1425
|
-
keyWordsBlank: string;
|
|
1426
|
-
}
|
|
1427
|
-
|
|
1428
1432
|
type index$4_IAccount = IAccount;
|
|
1429
1433
|
type index$4_IAccountAI = IAccountAI;
|
|
1430
1434
|
type index$4_IAccountAIChannel = IAccountAIChannel;
|
|
@@ -1459,6 +1463,7 @@ type index$4_IDeviceSetting = IDeviceSetting;
|
|
|
1459
1463
|
type index$4_IHistoryCanva = IHistoryCanva;
|
|
1460
1464
|
type index$4_ILogging = ILogging;
|
|
1461
1465
|
type index$4_IManagerImageAI = IManagerImageAI;
|
|
1466
|
+
type index$4_IManagerImageAIItemStore = IManagerImageAIItemStore;
|
|
1462
1467
|
type index$4_IManagerSheet = IManagerSheet;
|
|
1463
1468
|
type index$4_IManagerSheetChildren = IManagerSheetChildren;
|
|
1464
1469
|
type index$4_IManagerSheetChildrenGroup = IManagerSheetChildrenGroup;
|
|
@@ -1480,7 +1485,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1480
1485
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1481
1486
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1482
1487
|
declare namespace index$4 {
|
|
1483
|
-
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountAIImage as IAccountAIImage, index$4_IAccountAIImageChannel as IAccountAIImageChannel, index$4_IAccountAIImageGroup as IAccountAIImageGroup, index$4_IAccountAIImageInfo as IAccountAIImageInfo, index$4_IAccountAIImageTag as IAccountAIImageTag, index$4_IAccountAIInfo as IAccountAIInfo, index$4_IAccountAITag as IAccountAITag, index$4_IAccountAIVoice as IAccountAIVoice, index$4_IAccountAIVoiceChannel as IAccountAIVoiceChannel, index$4_IAccountAIVoiceGroup as IAccountAIVoiceGroup, index$4_IAccountAIVoiceInfo as IAccountAIVoiceInfo, index$4_IAccountAIVoiceTag as IAccountAIVoiceTag, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountEmail as IAccountEmail, index$4_IAccountEmailProxy as IAccountEmailProxy, index$4_IAccountEmailTag as IAccountEmailTag, index$4_IAccountEmailTaskWork as IAccountEmailTaskWork, index$4_IAccountVPS as IAccountVPS, index$4_IAccountVPSGroup as IAccountVPSGroup, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IManagerImageAI as IManagerImageAI, index$4_IManagerSheet as IManagerSheet, index$4_IManagerSheetChildren as IManagerSheetChildren, index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$4_IManagerSheetGroup as IManagerSheetGroup, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskAI as ITaskAI, index$4_ITaskAIItemAction as ITaskAIItemAction, index$4_ITaskAIItemGroup as ITaskAIItemGroup, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1488
|
+
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountAIImage as IAccountAIImage, index$4_IAccountAIImageChannel as IAccountAIImageChannel, index$4_IAccountAIImageGroup as IAccountAIImageGroup, index$4_IAccountAIImageInfo as IAccountAIImageInfo, index$4_IAccountAIImageTag as IAccountAIImageTag, index$4_IAccountAIInfo as IAccountAIInfo, index$4_IAccountAITag as IAccountAITag, index$4_IAccountAIVoice as IAccountAIVoice, index$4_IAccountAIVoiceChannel as IAccountAIVoiceChannel, index$4_IAccountAIVoiceGroup as IAccountAIVoiceGroup, index$4_IAccountAIVoiceInfo as IAccountAIVoiceInfo, index$4_IAccountAIVoiceTag as IAccountAIVoiceTag, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountEmail as IAccountEmail, index$4_IAccountEmailProxy as IAccountEmailProxy, index$4_IAccountEmailTag as IAccountEmailTag, index$4_IAccountEmailTaskWork as IAccountEmailTaskWork, index$4_IAccountVPS as IAccountVPS, index$4_IAccountVPSGroup as IAccountVPSGroup, index$4_IAccountsGroup as IAccountsGroup, index$4_ICanva as ICanva, index$4_ICanvaPosition as ICanvaPosition, index$4_IDevice as IDevice, index$4_IDeviceAllowPermission as IDeviceAllowPermission, index$4_IDeviceInfoEmail as IDeviceInfoEmail, index$4_IDeviceSetting as IDeviceSetting, index$4_IHistoryCanva as IHistoryCanva, index$4_ILogging as ILogging, index$4_IManagerImageAI as IManagerImageAI, index$4_IManagerImageAIItemStore as IManagerImageAIItemStore, index$4_IManagerSheet as IManagerSheet, index$4_IManagerSheetChildren as IManagerSheetChildren, index$4_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$4_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$4_IManagerSheetGroup as IManagerSheetGroup, index$4_IPC as IPC, index$4_IPatternCanvaAvatar as IPatternCanvaAvatar, index$4_IPatternCanvaCoverBackground as IPatternCanvaCoverBackground, index$4_IProxy as IProxy, index$4_IProxySetting as IProxySetting, index$4_IProxyTracking as IProxyTracking, index$4_ISheetsTool as ISheetsTool, index$4_ITaskAI as ITaskAI, index$4_ITaskAIItemAction as ITaskAIItemAction, index$4_ITaskAIItemGroup as ITaskAIItemGroup, index$4_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1484
1489
|
}
|
|
1485
1490
|
|
|
1486
1491
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|