automation-lib 4.9.75 → 4.9.76
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 -54
- package/dist/index.d.ts +60 -54
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1231,6 +1231,64 @@ interface IManagerImageAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfac
|
|
|
1231
1231
|
folder: EFolderImageAI;
|
|
1232
1232
|
}
|
|
1233
1233
|
|
|
1234
|
+
interface IManagerImageAIStore extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1235
|
+
managerImage: IManagerImageAI;
|
|
1236
|
+
file: IFile | string;
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1239
|
+
interface IManagerSheetGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1240
|
+
name: string;
|
|
1241
|
+
slug: string;
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
interface IManagerSheet extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1245
|
+
key: string;
|
|
1246
|
+
group: string | IManagerSheetGroup;
|
|
1247
|
+
standardColumn: string;
|
|
1248
|
+
url: string;
|
|
1249
|
+
name: string;
|
|
1250
|
+
isActive: boolean;
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1253
|
+
interface IManagerSheetChildren extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1254
|
+
managerSheet: string | IManagerSheet;
|
|
1255
|
+
name: string;
|
|
1256
|
+
accountAI: string | IAccountAI;
|
|
1257
|
+
listColumnActions: Array<{
|
|
1258
|
+
columnSymbol: string;
|
|
1259
|
+
columnName: string;
|
|
1260
|
+
}>;
|
|
1261
|
+
isActive: boolean;
|
|
1262
|
+
info: {
|
|
1263
|
+
numberCol: number;
|
|
1264
|
+
numberRow: number;
|
|
1265
|
+
numberTaskPending: number;
|
|
1266
|
+
numberTaskError: number;
|
|
1267
|
+
numberTaskDone: number;
|
|
1268
|
+
timeReadMaximum: number;
|
|
1269
|
+
};
|
|
1270
|
+
numberExecute: number;
|
|
1271
|
+
numberHourForExecute: number;
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
interface IManagerSheetChildrenGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1275
|
+
sheetChildren: string | IManagerSheetChildren;
|
|
1276
|
+
name: string;
|
|
1277
|
+
slug: string;
|
|
1278
|
+
order: number;
|
|
1279
|
+
listChannelsAI: string[] | IAccountAIChannel[];
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
interface IManagerSheetChildrenGroupItem extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1283
|
+
group: string | IManagerSheetChildrenGroup;
|
|
1284
|
+
order: number;
|
|
1285
|
+
columnSymbol: string;
|
|
1286
|
+
columnName: string;
|
|
1287
|
+
columnType: ETypeColumnManagerWork;
|
|
1288
|
+
keyWords: string;
|
|
1289
|
+
keyWordsBlank: string;
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1234
1292
|
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1235
1293
|
name: string;
|
|
1236
1294
|
slug: string;
|
|
@@ -1276,41 +1334,6 @@ interface ITaskTool extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModel
|
|
|
1276
1334
|
task_note: string;
|
|
1277
1335
|
}
|
|
1278
1336
|
|
|
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
1337
|
interface ITaskAIItemAction {
|
|
1315
1338
|
order: number;
|
|
1316
1339
|
keyWords: string;
|
|
@@ -1407,24 +1430,6 @@ interface IVoiceSettingDelay extends BoInterfaceModelsCommon.IBaseModel, BoInter
|
|
|
1407
1430
|
vsd_timeDelay: number;
|
|
1408
1431
|
}
|
|
1409
1432
|
|
|
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
1433
|
type index$4_IAccount = IAccount;
|
|
1429
1434
|
type index$4_IAccountAI = IAccountAI;
|
|
1430
1435
|
type index$4_IAccountAIChannel = IAccountAIChannel;
|
|
@@ -1459,6 +1464,7 @@ type index$4_IDeviceSetting = IDeviceSetting;
|
|
|
1459
1464
|
type index$4_IHistoryCanva = IHistoryCanva;
|
|
1460
1465
|
type index$4_ILogging = ILogging;
|
|
1461
1466
|
type index$4_IManagerImageAI = IManagerImageAI;
|
|
1467
|
+
type index$4_IManagerImageAIStore = IManagerImageAIStore;
|
|
1462
1468
|
type index$4_IManagerSheet = IManagerSheet;
|
|
1463
1469
|
type index$4_IManagerSheetChildren = IManagerSheetChildren;
|
|
1464
1470
|
type index$4_IManagerSheetChildrenGroup = IManagerSheetChildrenGroup;
|
|
@@ -1480,7 +1486,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1480
1486
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1481
1487
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1482
1488
|
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 };
|
|
1489
|
+
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_IManagerImageAIStore as IManagerImageAIStore, 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
1490
|
}
|
|
1485
1491
|
|
|
1486
1492
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -1231,6 +1231,64 @@ interface IManagerImageAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfac
|
|
|
1231
1231
|
folder: EFolderImageAI;
|
|
1232
1232
|
}
|
|
1233
1233
|
|
|
1234
|
+
interface IManagerImageAIStore extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1235
|
+
managerImage: IManagerImageAI;
|
|
1236
|
+
file: IFile | string;
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1239
|
+
interface IManagerSheetGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1240
|
+
name: string;
|
|
1241
|
+
slug: string;
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
interface IManagerSheet extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1245
|
+
key: string;
|
|
1246
|
+
group: string | IManagerSheetGroup;
|
|
1247
|
+
standardColumn: string;
|
|
1248
|
+
url: string;
|
|
1249
|
+
name: string;
|
|
1250
|
+
isActive: boolean;
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1253
|
+
interface IManagerSheetChildren extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1254
|
+
managerSheet: string | IManagerSheet;
|
|
1255
|
+
name: string;
|
|
1256
|
+
accountAI: string | IAccountAI;
|
|
1257
|
+
listColumnActions: Array<{
|
|
1258
|
+
columnSymbol: string;
|
|
1259
|
+
columnName: string;
|
|
1260
|
+
}>;
|
|
1261
|
+
isActive: boolean;
|
|
1262
|
+
info: {
|
|
1263
|
+
numberCol: number;
|
|
1264
|
+
numberRow: number;
|
|
1265
|
+
numberTaskPending: number;
|
|
1266
|
+
numberTaskError: number;
|
|
1267
|
+
numberTaskDone: number;
|
|
1268
|
+
timeReadMaximum: number;
|
|
1269
|
+
};
|
|
1270
|
+
numberExecute: number;
|
|
1271
|
+
numberHourForExecute: number;
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
interface IManagerSheetChildrenGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1275
|
+
sheetChildren: string | IManagerSheetChildren;
|
|
1276
|
+
name: string;
|
|
1277
|
+
slug: string;
|
|
1278
|
+
order: number;
|
|
1279
|
+
listChannelsAI: string[] | IAccountAIChannel[];
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
interface IManagerSheetChildrenGroupItem extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1283
|
+
group: string | IManagerSheetChildrenGroup;
|
|
1284
|
+
order: number;
|
|
1285
|
+
columnSymbol: string;
|
|
1286
|
+
columnName: string;
|
|
1287
|
+
columnType: ETypeColumnManagerWork;
|
|
1288
|
+
keyWords: string;
|
|
1289
|
+
keyWordsBlank: string;
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1234
1292
|
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1235
1293
|
name: string;
|
|
1236
1294
|
slug: string;
|
|
@@ -1276,41 +1334,6 @@ interface ITaskTool extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModel
|
|
|
1276
1334
|
task_note: string;
|
|
1277
1335
|
}
|
|
1278
1336
|
|
|
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
1337
|
interface ITaskAIItemAction {
|
|
1315
1338
|
order: number;
|
|
1316
1339
|
keyWords: string;
|
|
@@ -1407,24 +1430,6 @@ interface IVoiceSettingDelay extends BoInterfaceModelsCommon.IBaseModel, BoInter
|
|
|
1407
1430
|
vsd_timeDelay: number;
|
|
1408
1431
|
}
|
|
1409
1432
|
|
|
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
1433
|
type index$4_IAccount = IAccount;
|
|
1429
1434
|
type index$4_IAccountAI = IAccountAI;
|
|
1430
1435
|
type index$4_IAccountAIChannel = IAccountAIChannel;
|
|
@@ -1459,6 +1464,7 @@ type index$4_IDeviceSetting = IDeviceSetting;
|
|
|
1459
1464
|
type index$4_IHistoryCanva = IHistoryCanva;
|
|
1460
1465
|
type index$4_ILogging = ILogging;
|
|
1461
1466
|
type index$4_IManagerImageAI = IManagerImageAI;
|
|
1467
|
+
type index$4_IManagerImageAIStore = IManagerImageAIStore;
|
|
1462
1468
|
type index$4_IManagerSheet = IManagerSheet;
|
|
1463
1469
|
type index$4_IManagerSheetChildren = IManagerSheetChildren;
|
|
1464
1470
|
type index$4_IManagerSheetChildrenGroup = IManagerSheetChildrenGroup;
|
|
@@ -1480,7 +1486,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1480
1486
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1481
1487
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1482
1488
|
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 };
|
|
1489
|
+
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_IManagerImageAIStore as IManagerImageAIStore, 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
1490
|
}
|
|
1485
1491
|
|
|
1486
1492
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|