automation-lib 4.9.74 → 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 +61 -54
- package/dist/index.d.ts +61 -54
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -89,6 +89,7 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
89
89
|
VOICES_LANGUAGE: string;
|
|
90
90
|
VOICES_STORE: string;
|
|
91
91
|
VOICES_GENERATED: string;
|
|
92
|
+
MANAGER_IMAGE_AI: string;
|
|
92
93
|
MANAGER_SHEET: string;
|
|
93
94
|
MANAGER_SHEET_GROUP: string;
|
|
94
95
|
MANAGER_SHEET_CHILDREN: string;
|
|
@@ -1230,6 +1231,64 @@ interface IManagerImageAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfac
|
|
|
1230
1231
|
folder: EFolderImageAI;
|
|
1231
1232
|
}
|
|
1232
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
|
+
|
|
1233
1292
|
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1234
1293
|
name: string;
|
|
1235
1294
|
slug: string;
|
|
@@ -1275,41 +1334,6 @@ interface ITaskTool extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModel
|
|
|
1275
1334
|
task_note: string;
|
|
1276
1335
|
}
|
|
1277
1336
|
|
|
1278
|
-
interface IManagerSheetGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1279
|
-
name: string;
|
|
1280
|
-
slug: string;
|
|
1281
|
-
}
|
|
1282
|
-
|
|
1283
|
-
interface IManagerSheet extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1284
|
-
key: string;
|
|
1285
|
-
group: string | IManagerSheetGroup;
|
|
1286
|
-
standardColumn: string;
|
|
1287
|
-
url: string;
|
|
1288
|
-
name: string;
|
|
1289
|
-
isActive: boolean;
|
|
1290
|
-
}
|
|
1291
|
-
|
|
1292
|
-
interface IManagerSheetChildren extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1293
|
-
managerSheet: string | IManagerSheet;
|
|
1294
|
-
name: string;
|
|
1295
|
-
accountAI: string | IAccountAI;
|
|
1296
|
-
listColumnActions: Array<{
|
|
1297
|
-
columnSymbol: string;
|
|
1298
|
-
columnName: string;
|
|
1299
|
-
}>;
|
|
1300
|
-
isActive: boolean;
|
|
1301
|
-
info: {
|
|
1302
|
-
numberCol: number;
|
|
1303
|
-
numberRow: number;
|
|
1304
|
-
numberTaskPending: number;
|
|
1305
|
-
numberTaskError: number;
|
|
1306
|
-
numberTaskDone: number;
|
|
1307
|
-
timeReadMaximum: number;
|
|
1308
|
-
};
|
|
1309
|
-
numberExecute: number;
|
|
1310
|
-
numberHourForExecute: number;
|
|
1311
|
-
}
|
|
1312
|
-
|
|
1313
1337
|
interface ITaskAIItemAction {
|
|
1314
1338
|
order: number;
|
|
1315
1339
|
keyWords: string;
|
|
@@ -1406,24 +1430,6 @@ interface IVoiceSettingDelay extends BoInterfaceModelsCommon.IBaseModel, BoInter
|
|
|
1406
1430
|
vsd_timeDelay: number;
|
|
1407
1431
|
}
|
|
1408
1432
|
|
|
1409
|
-
interface IManagerSheetChildrenGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1410
|
-
sheetChildren: string | IManagerSheetChildren;
|
|
1411
|
-
name: string;
|
|
1412
|
-
slug: string;
|
|
1413
|
-
order: number;
|
|
1414
|
-
listChannelsAI: string[] | IAccountAIChannel[];
|
|
1415
|
-
}
|
|
1416
|
-
|
|
1417
|
-
interface IManagerSheetChildrenGroupItem extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1418
|
-
group: string | IManagerSheetChildrenGroup;
|
|
1419
|
-
order: number;
|
|
1420
|
-
columnSymbol: string;
|
|
1421
|
-
columnName: string;
|
|
1422
|
-
columnType: ETypeColumnManagerWork;
|
|
1423
|
-
keyWords: string;
|
|
1424
|
-
keyWordsBlank: string;
|
|
1425
|
-
}
|
|
1426
|
-
|
|
1427
1433
|
type index$4_IAccount = IAccount;
|
|
1428
1434
|
type index$4_IAccountAI = IAccountAI;
|
|
1429
1435
|
type index$4_IAccountAIChannel = IAccountAIChannel;
|
|
@@ -1458,6 +1464,7 @@ type index$4_IDeviceSetting = IDeviceSetting;
|
|
|
1458
1464
|
type index$4_IHistoryCanva = IHistoryCanva;
|
|
1459
1465
|
type index$4_ILogging = ILogging;
|
|
1460
1466
|
type index$4_IManagerImageAI = IManagerImageAI;
|
|
1467
|
+
type index$4_IManagerImageAIStore = IManagerImageAIStore;
|
|
1461
1468
|
type index$4_IManagerSheet = IManagerSheet;
|
|
1462
1469
|
type index$4_IManagerSheetChildren = IManagerSheetChildren;
|
|
1463
1470
|
type index$4_IManagerSheetChildrenGroup = IManagerSheetChildrenGroup;
|
|
@@ -1479,7 +1486,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1479
1486
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1480
1487
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1481
1488
|
declare namespace index$4 {
|
|
1482
|
-
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 };
|
|
1483
1490
|
}
|
|
1484
1491
|
|
|
1485
1492
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -89,6 +89,7 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
89
89
|
VOICES_LANGUAGE: string;
|
|
90
90
|
VOICES_STORE: string;
|
|
91
91
|
VOICES_GENERATED: string;
|
|
92
|
+
MANAGER_IMAGE_AI: string;
|
|
92
93
|
MANAGER_SHEET: string;
|
|
93
94
|
MANAGER_SHEET_GROUP: string;
|
|
94
95
|
MANAGER_SHEET_CHILDREN: string;
|
|
@@ -1230,6 +1231,64 @@ interface IManagerImageAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfac
|
|
|
1230
1231
|
folder: EFolderImageAI;
|
|
1231
1232
|
}
|
|
1232
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
|
+
|
|
1233
1292
|
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1234
1293
|
name: string;
|
|
1235
1294
|
slug: string;
|
|
@@ -1275,41 +1334,6 @@ interface ITaskTool extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModel
|
|
|
1275
1334
|
task_note: string;
|
|
1276
1335
|
}
|
|
1277
1336
|
|
|
1278
|
-
interface IManagerSheetGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1279
|
-
name: string;
|
|
1280
|
-
slug: string;
|
|
1281
|
-
}
|
|
1282
|
-
|
|
1283
|
-
interface IManagerSheet extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1284
|
-
key: string;
|
|
1285
|
-
group: string | IManagerSheetGroup;
|
|
1286
|
-
standardColumn: string;
|
|
1287
|
-
url: string;
|
|
1288
|
-
name: string;
|
|
1289
|
-
isActive: boolean;
|
|
1290
|
-
}
|
|
1291
|
-
|
|
1292
|
-
interface IManagerSheetChildren extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1293
|
-
managerSheet: string | IManagerSheet;
|
|
1294
|
-
name: string;
|
|
1295
|
-
accountAI: string | IAccountAI;
|
|
1296
|
-
listColumnActions: Array<{
|
|
1297
|
-
columnSymbol: string;
|
|
1298
|
-
columnName: string;
|
|
1299
|
-
}>;
|
|
1300
|
-
isActive: boolean;
|
|
1301
|
-
info: {
|
|
1302
|
-
numberCol: number;
|
|
1303
|
-
numberRow: number;
|
|
1304
|
-
numberTaskPending: number;
|
|
1305
|
-
numberTaskError: number;
|
|
1306
|
-
numberTaskDone: number;
|
|
1307
|
-
timeReadMaximum: number;
|
|
1308
|
-
};
|
|
1309
|
-
numberExecute: number;
|
|
1310
|
-
numberHourForExecute: number;
|
|
1311
|
-
}
|
|
1312
|
-
|
|
1313
1337
|
interface ITaskAIItemAction {
|
|
1314
1338
|
order: number;
|
|
1315
1339
|
keyWords: string;
|
|
@@ -1406,24 +1430,6 @@ interface IVoiceSettingDelay extends BoInterfaceModelsCommon.IBaseModel, BoInter
|
|
|
1406
1430
|
vsd_timeDelay: number;
|
|
1407
1431
|
}
|
|
1408
1432
|
|
|
1409
|
-
interface IManagerSheetChildrenGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1410
|
-
sheetChildren: string | IManagerSheetChildren;
|
|
1411
|
-
name: string;
|
|
1412
|
-
slug: string;
|
|
1413
|
-
order: number;
|
|
1414
|
-
listChannelsAI: string[] | IAccountAIChannel[];
|
|
1415
|
-
}
|
|
1416
|
-
|
|
1417
|
-
interface IManagerSheetChildrenGroupItem extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1418
|
-
group: string | IManagerSheetChildrenGroup;
|
|
1419
|
-
order: number;
|
|
1420
|
-
columnSymbol: string;
|
|
1421
|
-
columnName: string;
|
|
1422
|
-
columnType: ETypeColumnManagerWork;
|
|
1423
|
-
keyWords: string;
|
|
1424
|
-
keyWordsBlank: string;
|
|
1425
|
-
}
|
|
1426
|
-
|
|
1427
1433
|
type index$4_IAccount = IAccount;
|
|
1428
1434
|
type index$4_IAccountAI = IAccountAI;
|
|
1429
1435
|
type index$4_IAccountAIChannel = IAccountAIChannel;
|
|
@@ -1458,6 +1464,7 @@ type index$4_IDeviceSetting = IDeviceSetting;
|
|
|
1458
1464
|
type index$4_IHistoryCanva = IHistoryCanva;
|
|
1459
1465
|
type index$4_ILogging = ILogging;
|
|
1460
1466
|
type index$4_IManagerImageAI = IManagerImageAI;
|
|
1467
|
+
type index$4_IManagerImageAIStore = IManagerImageAIStore;
|
|
1461
1468
|
type index$4_IManagerSheet = IManagerSheet;
|
|
1462
1469
|
type index$4_IManagerSheetChildren = IManagerSheetChildren;
|
|
1463
1470
|
type index$4_IManagerSheetChildrenGroup = IManagerSheetChildrenGroup;
|
|
@@ -1479,7 +1486,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1479
1486
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1480
1487
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1481
1488
|
declare namespace index$4 {
|
|
1482
|
-
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 };
|
|
1483
1490
|
}
|
|
1484
1491
|
|
|
1485
1492
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.js
CHANGED
|
@@ -134,6 +134,7 @@ var CONST_API_CONTROLLERS = {
|
|
|
134
134
|
VOICES_LANGUAGE: "voices-language",
|
|
135
135
|
VOICES_STORE: "voices-store",
|
|
136
136
|
VOICES_GENERATED: "voices-generated",
|
|
137
|
+
MANAGER_IMAGE_AI: "manager-image-ai",
|
|
137
138
|
MANAGER_SHEET: "manager-sheet",
|
|
138
139
|
MANAGER_SHEET_GROUP: "manager-sheet-group",
|
|
139
140
|
MANAGER_SHEET_CHILDREN: "manager-sheet-children",
|
package/dist/index.mjs
CHANGED
|
@@ -111,6 +111,7 @@ var CONST_API_CONTROLLERS = {
|
|
|
111
111
|
VOICES_LANGUAGE: "voices-language",
|
|
112
112
|
VOICES_STORE: "voices-store",
|
|
113
113
|
VOICES_GENERATED: "voices-generated",
|
|
114
|
+
MANAGER_IMAGE_AI: "manager-image-ai",
|
|
114
115
|
MANAGER_SHEET: "manager-sheet",
|
|
115
116
|
MANAGER_SHEET_GROUP: "manager-sheet-group",
|
|
116
117
|
MANAGER_SHEET_CHILDREN: "manager-sheet-children",
|