automation-lib 4.9.68 → 4.9.71
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 +13 -11
- package/dist/index.d.ts +13 -11
- package/dist/index.js +9 -0
- package/dist/index.mjs +9 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -438,6 +438,12 @@ declare namespace index$a {
|
|
|
438
438
|
export { index$a_EStatusBlog as EStatusBlog, index$a_EStatusCommon as EStatusCommon, index$a_EStatusExecuteCommon as EStatusExecuteCommon, index$a_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$a_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$a_EStatusSheetWork as EStatusSheetWork, index$a_EStatusTaskAI as EStatusTaskAI, index$a_EStatusTaskJob as EStatusTaskJob, index$a_EStatusTaskJobGroup as EStatusTaskJobGroup, index$a_EStatusTaskTool as EStatusTaskTool, index$a_EStatusVPS as EStatusVPS };
|
|
439
439
|
}
|
|
440
440
|
|
|
441
|
+
declare enum EFolderImageAI {
|
|
442
|
+
Scene = "Scene",
|
|
443
|
+
Style = "Style",
|
|
444
|
+
Subject = "Subject"
|
|
445
|
+
}
|
|
446
|
+
|
|
441
447
|
declare enum EEmailTagType {
|
|
442
448
|
Content = "Content",
|
|
443
449
|
Image = "Image",
|
|
@@ -520,6 +526,8 @@ type index$9_EAIVersionVoice = EAIVersionVoice;
|
|
|
520
526
|
declare const index$9_EAIVersionVoice: typeof EAIVersionVoice;
|
|
521
527
|
type index$9_EEmailTagType = EEmailTagType;
|
|
522
528
|
declare const index$9_EEmailTagType: typeof EEmailTagType;
|
|
529
|
+
type index$9_EFolderImageAI = EFolderImageAI;
|
|
530
|
+
declare const index$9_EFolderImageAI: typeof EFolderImageAI;
|
|
523
531
|
type index$9_EStatusAccountAI = EStatusAccountAI;
|
|
524
532
|
declare const index$9_EStatusAccountAI: typeof EStatusAccountAI;
|
|
525
533
|
type index$9_EStatusChannel = EStatusChannel;
|
|
@@ -527,7 +535,7 @@ declare const index$9_EStatusChannel: typeof EStatusChannel;
|
|
|
527
535
|
type index$9_EStatusEmail = EStatusEmail;
|
|
528
536
|
declare const index$9_EStatusEmail: typeof EStatusEmail;
|
|
529
537
|
declare namespace index$9 {
|
|
530
|
-
export { index$9_EAIModelContent as EAIModelContent, index$9_EAIModelImage as EAIModelImage, index$9_EAIModelVoice as EAIModelVoice, index$9_EAIVersionGPT as EAIVersionGPT, index$9_EAIVersionImage as EAIVersionImage, index$9_EAIVersionPerplexity as EAIVersionPerplexity, index$9_EAIVersionVoice as EAIVersionVoice, index$9_EEmailTagType as EEmailTagType, index$9_EStatusAccountAI as EStatusAccountAI, index$9_EStatusChannel as EStatusChannel, index$9_EStatusEmail as EStatusEmail };
|
|
538
|
+
export { index$9_EAIModelContent as EAIModelContent, index$9_EAIModelImage as EAIModelImage, index$9_EAIModelVoice as EAIModelVoice, index$9_EAIVersionGPT as EAIVersionGPT, index$9_EAIVersionImage as EAIVersionImage, index$9_EAIVersionPerplexity as EAIVersionPerplexity, index$9_EAIVersionVoice as EAIVersionVoice, index$9_EEmailTagType as EEmailTagType, index$9_EFolderImageAI as EFolderImageAI, index$9_EStatusAccountAI as EStatusAccountAI, index$9_EStatusChannel as EStatusChannel, index$9_EStatusEmail as EStatusEmail };
|
|
531
539
|
}
|
|
532
540
|
|
|
533
541
|
declare enum ELarkMessageCommon {
|
|
@@ -1214,18 +1222,12 @@ interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceMo
|
|
|
1214
1222
|
}>;
|
|
1215
1223
|
}
|
|
1216
1224
|
|
|
1217
|
-
|
|
1218
|
-
Scene = "Scene",
|
|
1219
|
-
Style = "Style",
|
|
1220
|
-
Subject = "Subject"
|
|
1221
|
-
}
|
|
1222
|
-
|
|
1223
|
-
interface IManagerImage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1225
|
+
interface IManagerImageAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1224
1226
|
file: IFile;
|
|
1225
1227
|
model: EAIModelImage;
|
|
1226
1228
|
idea: IManagerWork;
|
|
1227
1229
|
niche: IManagerWork;
|
|
1228
|
-
folder:
|
|
1230
|
+
folder: EFolderImageAI;
|
|
1229
1231
|
}
|
|
1230
1232
|
|
|
1231
1233
|
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
@@ -1455,7 +1457,7 @@ type index$4_IDeviceInfoEmail = IDeviceInfoEmail;
|
|
|
1455
1457
|
type index$4_IDeviceSetting = IDeviceSetting;
|
|
1456
1458
|
type index$4_IHistoryCanva = IHistoryCanva;
|
|
1457
1459
|
type index$4_ILogging = ILogging;
|
|
1458
|
-
type index$
|
|
1460
|
+
type index$4_IManagerImageAI = IManagerImageAI;
|
|
1459
1461
|
type index$4_IManagerSheet = IManagerSheet;
|
|
1460
1462
|
type index$4_IManagerSheetChildren = IManagerSheetChildren;
|
|
1461
1463
|
type index$4_IManagerSheetChildrenGroup = IManagerSheetChildrenGroup;
|
|
@@ -1477,7 +1479,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1477
1479
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1478
1480
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1479
1481
|
declare namespace index$4 {
|
|
1480
|
-
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$
|
|
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 };
|
|
1481
1483
|
}
|
|
1482
1484
|
|
|
1483
1485
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -438,6 +438,12 @@ declare namespace index$a {
|
|
|
438
438
|
export { index$a_EStatusBlog as EStatusBlog, index$a_EStatusCommon as EStatusCommon, index$a_EStatusExecuteCommon as EStatusExecuteCommon, index$a_EStatusLoginAccountEmail as EStatusLoginAccountEmail, index$a_EStatusLoginAccountSocial as EStatusLoginAccountSocial, index$a_EStatusSheetWork as EStatusSheetWork, index$a_EStatusTaskAI as EStatusTaskAI, index$a_EStatusTaskJob as EStatusTaskJob, index$a_EStatusTaskJobGroup as EStatusTaskJobGroup, index$a_EStatusTaskTool as EStatusTaskTool, index$a_EStatusVPS as EStatusVPS };
|
|
439
439
|
}
|
|
440
440
|
|
|
441
|
+
declare enum EFolderImageAI {
|
|
442
|
+
Scene = "Scene",
|
|
443
|
+
Style = "Style",
|
|
444
|
+
Subject = "Subject"
|
|
445
|
+
}
|
|
446
|
+
|
|
441
447
|
declare enum EEmailTagType {
|
|
442
448
|
Content = "Content",
|
|
443
449
|
Image = "Image",
|
|
@@ -520,6 +526,8 @@ type index$9_EAIVersionVoice = EAIVersionVoice;
|
|
|
520
526
|
declare const index$9_EAIVersionVoice: typeof EAIVersionVoice;
|
|
521
527
|
type index$9_EEmailTagType = EEmailTagType;
|
|
522
528
|
declare const index$9_EEmailTagType: typeof EEmailTagType;
|
|
529
|
+
type index$9_EFolderImageAI = EFolderImageAI;
|
|
530
|
+
declare const index$9_EFolderImageAI: typeof EFolderImageAI;
|
|
523
531
|
type index$9_EStatusAccountAI = EStatusAccountAI;
|
|
524
532
|
declare const index$9_EStatusAccountAI: typeof EStatusAccountAI;
|
|
525
533
|
type index$9_EStatusChannel = EStatusChannel;
|
|
@@ -527,7 +535,7 @@ declare const index$9_EStatusChannel: typeof EStatusChannel;
|
|
|
527
535
|
type index$9_EStatusEmail = EStatusEmail;
|
|
528
536
|
declare const index$9_EStatusEmail: typeof EStatusEmail;
|
|
529
537
|
declare namespace index$9 {
|
|
530
|
-
export { index$9_EAIModelContent as EAIModelContent, index$9_EAIModelImage as EAIModelImage, index$9_EAIModelVoice as EAIModelVoice, index$9_EAIVersionGPT as EAIVersionGPT, index$9_EAIVersionImage as EAIVersionImage, index$9_EAIVersionPerplexity as EAIVersionPerplexity, index$9_EAIVersionVoice as EAIVersionVoice, index$9_EEmailTagType as EEmailTagType, index$9_EStatusAccountAI as EStatusAccountAI, index$9_EStatusChannel as EStatusChannel, index$9_EStatusEmail as EStatusEmail };
|
|
538
|
+
export { index$9_EAIModelContent as EAIModelContent, index$9_EAIModelImage as EAIModelImage, index$9_EAIModelVoice as EAIModelVoice, index$9_EAIVersionGPT as EAIVersionGPT, index$9_EAIVersionImage as EAIVersionImage, index$9_EAIVersionPerplexity as EAIVersionPerplexity, index$9_EAIVersionVoice as EAIVersionVoice, index$9_EEmailTagType as EEmailTagType, index$9_EFolderImageAI as EFolderImageAI, index$9_EStatusAccountAI as EStatusAccountAI, index$9_EStatusChannel as EStatusChannel, index$9_EStatusEmail as EStatusEmail };
|
|
531
539
|
}
|
|
532
540
|
|
|
533
541
|
declare enum ELarkMessageCommon {
|
|
@@ -1214,18 +1222,12 @@ interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceMo
|
|
|
1214
1222
|
}>;
|
|
1215
1223
|
}
|
|
1216
1224
|
|
|
1217
|
-
|
|
1218
|
-
Scene = "Scene",
|
|
1219
|
-
Style = "Style",
|
|
1220
|
-
Subject = "Subject"
|
|
1221
|
-
}
|
|
1222
|
-
|
|
1223
|
-
interface IManagerImage extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1225
|
+
interface IManagerImageAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1224
1226
|
file: IFile;
|
|
1225
1227
|
model: EAIModelImage;
|
|
1226
1228
|
idea: IManagerWork;
|
|
1227
1229
|
niche: IManagerWork;
|
|
1228
|
-
folder:
|
|
1230
|
+
folder: EFolderImageAI;
|
|
1229
1231
|
}
|
|
1230
1232
|
|
|
1231
1233
|
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
@@ -1455,7 +1457,7 @@ type index$4_IDeviceInfoEmail = IDeviceInfoEmail;
|
|
|
1455
1457
|
type index$4_IDeviceSetting = IDeviceSetting;
|
|
1456
1458
|
type index$4_IHistoryCanva = IHistoryCanva;
|
|
1457
1459
|
type index$4_ILogging = ILogging;
|
|
1458
|
-
type index$
|
|
1460
|
+
type index$4_IManagerImageAI = IManagerImageAI;
|
|
1459
1461
|
type index$4_IManagerSheet = IManagerSheet;
|
|
1460
1462
|
type index$4_IManagerSheetChildren = IManagerSheetChildren;
|
|
1461
1463
|
type index$4_IManagerSheetChildrenGroup = IManagerSheetChildrenGroup;
|
|
@@ -1477,7 +1479,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1477
1479
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1478
1480
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1479
1481
|
declare namespace index$4 {
|
|
1480
|
-
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$
|
|
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 };
|
|
1481
1483
|
}
|
|
1482
1484
|
|
|
1483
1485
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.js
CHANGED
|
@@ -523,11 +523,20 @@ __export(ai_exports, {
|
|
|
523
523
|
EAIVersionPerplexity: () => EAIVersionPerplexity,
|
|
524
524
|
EAIVersionVoice: () => EAIVersionVoice,
|
|
525
525
|
EEmailTagType: () => EEmailTagType,
|
|
526
|
+
EFolderImageAI: () => EFolderImageAI,
|
|
526
527
|
EStatusAccountAI: () => EStatusAccountAI,
|
|
527
528
|
EStatusChannel: () => EStatusChannel,
|
|
528
529
|
EStatusEmail: () => EStatusEmail
|
|
529
530
|
});
|
|
530
531
|
|
|
532
|
+
// src/enums/ai/common/EFolderImageAI.enum.ts
|
|
533
|
+
var EFolderImageAI = /* @__PURE__ */ ((EFolderImageAI2) => {
|
|
534
|
+
EFolderImageAI2["Scene"] = "Scene";
|
|
535
|
+
EFolderImageAI2["Style"] = "Style";
|
|
536
|
+
EFolderImageAI2["Subject"] = "Subject";
|
|
537
|
+
return EFolderImageAI2;
|
|
538
|
+
})(EFolderImageAI || {});
|
|
539
|
+
|
|
531
540
|
// src/enums/ai/email/EEmailTagType.enum.ts
|
|
532
541
|
var EEmailTagType = /* @__PURE__ */ ((EEmailTagType2) => {
|
|
533
542
|
EEmailTagType2["Content"] = "Content";
|
package/dist/index.mjs
CHANGED
|
@@ -500,11 +500,20 @@ __export(ai_exports, {
|
|
|
500
500
|
EAIVersionPerplexity: () => EAIVersionPerplexity,
|
|
501
501
|
EAIVersionVoice: () => EAIVersionVoice,
|
|
502
502
|
EEmailTagType: () => EEmailTagType,
|
|
503
|
+
EFolderImageAI: () => EFolderImageAI,
|
|
503
504
|
EStatusAccountAI: () => EStatusAccountAI,
|
|
504
505
|
EStatusChannel: () => EStatusChannel,
|
|
505
506
|
EStatusEmail: () => EStatusEmail
|
|
506
507
|
});
|
|
507
508
|
|
|
509
|
+
// src/enums/ai/common/EFolderImageAI.enum.ts
|
|
510
|
+
var EFolderImageAI = /* @__PURE__ */ ((EFolderImageAI2) => {
|
|
511
|
+
EFolderImageAI2["Scene"] = "Scene";
|
|
512
|
+
EFolderImageAI2["Style"] = "Style";
|
|
513
|
+
EFolderImageAI2["Subject"] = "Subject";
|
|
514
|
+
return EFolderImageAI2;
|
|
515
|
+
})(EFolderImageAI || {});
|
|
516
|
+
|
|
508
517
|
// src/enums/ai/email/EEmailTagType.enum.ts
|
|
509
518
|
var EEmailTagType = /* @__PURE__ */ ((EEmailTagType2) => {
|
|
510
519
|
EEmailTagType2["Content"] = "Content";
|