automation-lib 4.9.50 → 4.9.52
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 +16 -3
- package/dist/index.d.ts +16 -3
- 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 EEmailTagType {
|
|
442
|
+
Content = "Content",
|
|
443
|
+
Image = "Image",
|
|
444
|
+
Voice = "Voice"
|
|
445
|
+
}
|
|
446
|
+
|
|
441
447
|
declare enum EAIModelContent {
|
|
442
448
|
GPT = "GPT",
|
|
443
449
|
Perplexity = "Perplexity"
|
|
@@ -505,12 +511,14 @@ type index$9_EAIVersionPerplexity = EAIVersionPerplexity;
|
|
|
505
511
|
declare const index$9_EAIVersionPerplexity: typeof EAIVersionPerplexity;
|
|
506
512
|
type index$9_EAIVersionVoice = EAIVersionVoice;
|
|
507
513
|
declare const index$9_EAIVersionVoice: typeof EAIVersionVoice;
|
|
514
|
+
type index$9_EEmailTagType = EEmailTagType;
|
|
515
|
+
declare const index$9_EEmailTagType: typeof EEmailTagType;
|
|
508
516
|
type index$9_EStatusAccountAI = EStatusAccountAI;
|
|
509
517
|
declare const index$9_EStatusAccountAI: typeof EStatusAccountAI;
|
|
510
518
|
type index$9_EStatusEmail = EStatusEmail;
|
|
511
519
|
declare const index$9_EStatusEmail: typeof EStatusEmail;
|
|
512
520
|
declare namespace index$9 {
|
|
513
|
-
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_EStatusAccountAI as EStatusAccountAI, index$9_EStatusEmail as EStatusEmail };
|
|
521
|
+
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_EStatusEmail as EStatusEmail };
|
|
514
522
|
}
|
|
515
523
|
|
|
516
524
|
declare enum ELarkMessageCommon {
|
|
@@ -600,7 +608,6 @@ interface IDepartment extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceMod
|
|
|
600
608
|
department_name: string;
|
|
601
609
|
department_slug: string;
|
|
602
610
|
department_mentor: IUser | String;
|
|
603
|
-
department_members: IUser[] | String[];
|
|
604
611
|
}
|
|
605
612
|
|
|
606
613
|
interface IUser extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
@@ -1026,6 +1033,11 @@ interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceMo
|
|
|
1026
1033
|
}>;
|
|
1027
1034
|
}
|
|
1028
1035
|
|
|
1036
|
+
interface IAccountEmailTag extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1037
|
+
accountEmail: string;
|
|
1038
|
+
typeTag: EEmailTagType;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1029
1041
|
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1030
1042
|
ag_name: string;
|
|
1031
1043
|
ag_slug: string;
|
|
@@ -1398,6 +1410,7 @@ type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
|
1398
1410
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
1399
1411
|
type index$4_IAccountEmail = IAccountEmail;
|
|
1400
1412
|
type index$4_IAccountEmailProxy = IAccountEmailProxy;
|
|
1413
|
+
type index$4_IAccountEmailTag = IAccountEmailTag;
|
|
1401
1414
|
type index$4_IAccountEmailTaskWork = IAccountEmailTaskWork;
|
|
1402
1415
|
type index$4_IAccountVPS = IAccountVPS;
|
|
1403
1416
|
type index$4_IAccountVPSGroup = IAccountVPSGroup;
|
|
@@ -1431,7 +1444,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1431
1444
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1432
1445
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1433
1446
|
declare namespace index$4 {
|
|
1434
|
-
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_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_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 };
|
|
1447
|
+
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_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 };
|
|
1435
1448
|
}
|
|
1436
1449
|
|
|
1437
1450
|
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 EEmailTagType {
|
|
442
|
+
Content = "Content",
|
|
443
|
+
Image = "Image",
|
|
444
|
+
Voice = "Voice"
|
|
445
|
+
}
|
|
446
|
+
|
|
441
447
|
declare enum EAIModelContent {
|
|
442
448
|
GPT = "GPT",
|
|
443
449
|
Perplexity = "Perplexity"
|
|
@@ -505,12 +511,14 @@ type index$9_EAIVersionPerplexity = EAIVersionPerplexity;
|
|
|
505
511
|
declare const index$9_EAIVersionPerplexity: typeof EAIVersionPerplexity;
|
|
506
512
|
type index$9_EAIVersionVoice = EAIVersionVoice;
|
|
507
513
|
declare const index$9_EAIVersionVoice: typeof EAIVersionVoice;
|
|
514
|
+
type index$9_EEmailTagType = EEmailTagType;
|
|
515
|
+
declare const index$9_EEmailTagType: typeof EEmailTagType;
|
|
508
516
|
type index$9_EStatusAccountAI = EStatusAccountAI;
|
|
509
517
|
declare const index$9_EStatusAccountAI: typeof EStatusAccountAI;
|
|
510
518
|
type index$9_EStatusEmail = EStatusEmail;
|
|
511
519
|
declare const index$9_EStatusEmail: typeof EStatusEmail;
|
|
512
520
|
declare namespace index$9 {
|
|
513
|
-
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_EStatusAccountAI as EStatusAccountAI, index$9_EStatusEmail as EStatusEmail };
|
|
521
|
+
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_EStatusEmail as EStatusEmail };
|
|
514
522
|
}
|
|
515
523
|
|
|
516
524
|
declare enum ELarkMessageCommon {
|
|
@@ -600,7 +608,6 @@ interface IDepartment extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceMod
|
|
|
600
608
|
department_name: string;
|
|
601
609
|
department_slug: string;
|
|
602
610
|
department_mentor: IUser | String;
|
|
603
|
-
department_members: IUser[] | String[];
|
|
604
611
|
}
|
|
605
612
|
|
|
606
613
|
interface IUser extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
@@ -1026,6 +1033,11 @@ interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceMo
|
|
|
1026
1033
|
}>;
|
|
1027
1034
|
}
|
|
1028
1035
|
|
|
1036
|
+
interface IAccountEmailTag extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1037
|
+
accountEmail: string;
|
|
1038
|
+
typeTag: EEmailTagType;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1029
1041
|
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1030
1042
|
ag_name: string;
|
|
1031
1043
|
ag_slug: string;
|
|
@@ -1398,6 +1410,7 @@ type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
|
1398
1410
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
1399
1411
|
type index$4_IAccountEmail = IAccountEmail;
|
|
1400
1412
|
type index$4_IAccountEmailProxy = IAccountEmailProxy;
|
|
1413
|
+
type index$4_IAccountEmailTag = IAccountEmailTag;
|
|
1401
1414
|
type index$4_IAccountEmailTaskWork = IAccountEmailTaskWork;
|
|
1402
1415
|
type index$4_IAccountVPS = IAccountVPS;
|
|
1403
1416
|
type index$4_IAccountVPSGroup = IAccountVPSGroup;
|
|
@@ -1431,7 +1444,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1431
1444
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1432
1445
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1433
1446
|
declare namespace index$4 {
|
|
1434
|
-
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_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_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 };
|
|
1447
|
+
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_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 };
|
|
1435
1448
|
}
|
|
1436
1449
|
|
|
1437
1450
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.js
CHANGED
|
@@ -522,10 +522,19 @@ __export(ai_exports, {
|
|
|
522
522
|
EAIVersionImage: () => EAIVersionImage,
|
|
523
523
|
EAIVersionPerplexity: () => EAIVersionPerplexity,
|
|
524
524
|
EAIVersionVoice: () => EAIVersionVoice,
|
|
525
|
+
EEmailTagType: () => EEmailTagType,
|
|
525
526
|
EStatusAccountAI: () => EStatusAccountAI,
|
|
526
527
|
EStatusEmail: () => EStatusEmail
|
|
527
528
|
});
|
|
528
529
|
|
|
530
|
+
// src/enums/ai/email/EEmailTagType.enum.ts
|
|
531
|
+
var EEmailTagType = /* @__PURE__ */ ((EEmailTagType2) => {
|
|
532
|
+
EEmailTagType2["Content"] = "Content";
|
|
533
|
+
EEmailTagType2["Image"] = "Image";
|
|
534
|
+
EEmailTagType2["Voice"] = "Voice";
|
|
535
|
+
return EEmailTagType2;
|
|
536
|
+
})(EEmailTagType || {});
|
|
537
|
+
|
|
529
538
|
// src/enums/ai/model/EAIModelContent.enum.ts
|
|
530
539
|
var EAIModelContent = /* @__PURE__ */ ((EAIModelContent2) => {
|
|
531
540
|
EAIModelContent2["GPT"] = "GPT";
|
package/dist/index.mjs
CHANGED
|
@@ -499,10 +499,19 @@ __export(ai_exports, {
|
|
|
499
499
|
EAIVersionImage: () => EAIVersionImage,
|
|
500
500
|
EAIVersionPerplexity: () => EAIVersionPerplexity,
|
|
501
501
|
EAIVersionVoice: () => EAIVersionVoice,
|
|
502
|
+
EEmailTagType: () => EEmailTagType,
|
|
502
503
|
EStatusAccountAI: () => EStatusAccountAI,
|
|
503
504
|
EStatusEmail: () => EStatusEmail
|
|
504
505
|
});
|
|
505
506
|
|
|
507
|
+
// src/enums/ai/email/EEmailTagType.enum.ts
|
|
508
|
+
var EEmailTagType = /* @__PURE__ */ ((EEmailTagType2) => {
|
|
509
|
+
EEmailTagType2["Content"] = "Content";
|
|
510
|
+
EEmailTagType2["Image"] = "Image";
|
|
511
|
+
EEmailTagType2["Voice"] = "Voice";
|
|
512
|
+
return EEmailTagType2;
|
|
513
|
+
})(EEmailTagType || {});
|
|
514
|
+
|
|
506
515
|
// src/enums/ai/model/EAIModelContent.enum.ts
|
|
507
516
|
var EAIModelContent = /* @__PURE__ */ ((EAIModelContent2) => {
|
|
508
517
|
EAIModelContent2["GPT"] = "GPT";
|