automation-lib 4.9.49 → 4.9.51
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 +18 -2
- package/dist/index.d.ts +18 -2
- package/dist/index.js +11 -0
- package/dist/index.mjs +11 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -95,6 +95,8 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
95
95
|
MANAGER_SHEET_CHILDREN_GROUP: string;
|
|
96
96
|
MANAGER_SHEET_CHILDREN_GROUP_ITEM: string;
|
|
97
97
|
ACCOUNT_EMAIL: string;
|
|
98
|
+
ACCOUNT_EMAIL_PROXY: string;
|
|
99
|
+
ACCOUNT_EMAIL_TASK_WORK: string;
|
|
98
100
|
ACCOUNT_AI: string;
|
|
99
101
|
ACCOUNT_AI_INFO: string;
|
|
100
102
|
ACCOUNT_AI_GROUP: string;
|
|
@@ -436,6 +438,12 @@ declare namespace index$a {
|
|
|
436
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 };
|
|
437
439
|
}
|
|
438
440
|
|
|
441
|
+
declare enum EEmailTagType {
|
|
442
|
+
Content = "Content",
|
|
443
|
+
Image = "Image",
|
|
444
|
+
Voice = "Voice"
|
|
445
|
+
}
|
|
446
|
+
|
|
439
447
|
declare enum EAIModelContent {
|
|
440
448
|
GPT = "GPT",
|
|
441
449
|
Perplexity = "Perplexity"
|
|
@@ -503,12 +511,14 @@ type index$9_EAIVersionPerplexity = EAIVersionPerplexity;
|
|
|
503
511
|
declare const index$9_EAIVersionPerplexity: typeof EAIVersionPerplexity;
|
|
504
512
|
type index$9_EAIVersionVoice = EAIVersionVoice;
|
|
505
513
|
declare const index$9_EAIVersionVoice: typeof EAIVersionVoice;
|
|
514
|
+
type index$9_EEmailTagType = EEmailTagType;
|
|
515
|
+
declare const index$9_EEmailTagType: typeof EEmailTagType;
|
|
506
516
|
type index$9_EStatusAccountAI = EStatusAccountAI;
|
|
507
517
|
declare const index$9_EStatusAccountAI: typeof EStatusAccountAI;
|
|
508
518
|
type index$9_EStatusEmail = EStatusEmail;
|
|
509
519
|
declare const index$9_EStatusEmail: typeof EStatusEmail;
|
|
510
520
|
declare namespace index$9 {
|
|
511
|
-
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 };
|
|
512
522
|
}
|
|
513
523
|
|
|
514
524
|
declare enum ELarkMessageCommon {
|
|
@@ -1024,6 +1034,11 @@ interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceMo
|
|
|
1024
1034
|
}>;
|
|
1025
1035
|
}
|
|
1026
1036
|
|
|
1037
|
+
interface IAccountEmailTag extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1038
|
+
accountEmail: string;
|
|
1039
|
+
typeTag: EEmailTagType;
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1027
1042
|
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1028
1043
|
ag_name: string;
|
|
1029
1044
|
ag_slug: string;
|
|
@@ -1396,6 +1411,7 @@ type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
|
1396
1411
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
1397
1412
|
type index$4_IAccountEmail = IAccountEmail;
|
|
1398
1413
|
type index$4_IAccountEmailProxy = IAccountEmailProxy;
|
|
1414
|
+
type index$4_IAccountEmailTag = IAccountEmailTag;
|
|
1399
1415
|
type index$4_IAccountEmailTaskWork = IAccountEmailTaskWork;
|
|
1400
1416
|
type index$4_IAccountVPS = IAccountVPS;
|
|
1401
1417
|
type index$4_IAccountVPSGroup = IAccountVPSGroup;
|
|
@@ -1429,7 +1445,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1429
1445
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1430
1446
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1431
1447
|
declare namespace index$4 {
|
|
1432
|
-
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 };
|
|
1448
|
+
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 };
|
|
1433
1449
|
}
|
|
1434
1450
|
|
|
1435
1451
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -95,6 +95,8 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
95
95
|
MANAGER_SHEET_CHILDREN_GROUP: string;
|
|
96
96
|
MANAGER_SHEET_CHILDREN_GROUP_ITEM: string;
|
|
97
97
|
ACCOUNT_EMAIL: string;
|
|
98
|
+
ACCOUNT_EMAIL_PROXY: string;
|
|
99
|
+
ACCOUNT_EMAIL_TASK_WORK: string;
|
|
98
100
|
ACCOUNT_AI: string;
|
|
99
101
|
ACCOUNT_AI_INFO: string;
|
|
100
102
|
ACCOUNT_AI_GROUP: string;
|
|
@@ -436,6 +438,12 @@ declare namespace index$a {
|
|
|
436
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 };
|
|
437
439
|
}
|
|
438
440
|
|
|
441
|
+
declare enum EEmailTagType {
|
|
442
|
+
Content = "Content",
|
|
443
|
+
Image = "Image",
|
|
444
|
+
Voice = "Voice"
|
|
445
|
+
}
|
|
446
|
+
|
|
439
447
|
declare enum EAIModelContent {
|
|
440
448
|
GPT = "GPT",
|
|
441
449
|
Perplexity = "Perplexity"
|
|
@@ -503,12 +511,14 @@ type index$9_EAIVersionPerplexity = EAIVersionPerplexity;
|
|
|
503
511
|
declare const index$9_EAIVersionPerplexity: typeof EAIVersionPerplexity;
|
|
504
512
|
type index$9_EAIVersionVoice = EAIVersionVoice;
|
|
505
513
|
declare const index$9_EAIVersionVoice: typeof EAIVersionVoice;
|
|
514
|
+
type index$9_EEmailTagType = EEmailTagType;
|
|
515
|
+
declare const index$9_EEmailTagType: typeof EEmailTagType;
|
|
506
516
|
type index$9_EStatusAccountAI = EStatusAccountAI;
|
|
507
517
|
declare const index$9_EStatusAccountAI: typeof EStatusAccountAI;
|
|
508
518
|
type index$9_EStatusEmail = EStatusEmail;
|
|
509
519
|
declare const index$9_EStatusEmail: typeof EStatusEmail;
|
|
510
520
|
declare namespace index$9 {
|
|
511
|
-
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 };
|
|
512
522
|
}
|
|
513
523
|
|
|
514
524
|
declare enum ELarkMessageCommon {
|
|
@@ -1024,6 +1034,11 @@ interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceMo
|
|
|
1024
1034
|
}>;
|
|
1025
1035
|
}
|
|
1026
1036
|
|
|
1037
|
+
interface IAccountEmailTag extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1038
|
+
accountEmail: string;
|
|
1039
|
+
typeTag: EEmailTagType;
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1027
1042
|
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1028
1043
|
ag_name: string;
|
|
1029
1044
|
ag_slug: string;
|
|
@@ -1396,6 +1411,7 @@ type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
|
1396
1411
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
1397
1412
|
type index$4_IAccountEmail = IAccountEmail;
|
|
1398
1413
|
type index$4_IAccountEmailProxy = IAccountEmailProxy;
|
|
1414
|
+
type index$4_IAccountEmailTag = IAccountEmailTag;
|
|
1399
1415
|
type index$4_IAccountEmailTaskWork = IAccountEmailTaskWork;
|
|
1400
1416
|
type index$4_IAccountVPS = IAccountVPS;
|
|
1401
1417
|
type index$4_IAccountVPSGroup = IAccountVPSGroup;
|
|
@@ -1429,7 +1445,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1429
1445
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1430
1446
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1431
1447
|
declare namespace index$4 {
|
|
1432
|
-
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 };
|
|
1448
|
+
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 };
|
|
1433
1449
|
}
|
|
1434
1450
|
|
|
1435
1451
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.js
CHANGED
|
@@ -140,6 +140,8 @@ var CONST_API_CONTROLLERS = {
|
|
|
140
140
|
MANAGER_SHEET_CHILDREN_GROUP: "manager-sheet-children-group",
|
|
141
141
|
MANAGER_SHEET_CHILDREN_GROUP_ITEM: "manager-sheet-children-group-item",
|
|
142
142
|
ACCOUNT_EMAIL: "account-email",
|
|
143
|
+
ACCOUNT_EMAIL_PROXY: "account-email-proxy",
|
|
144
|
+
ACCOUNT_EMAIL_TASK_WORK: "account-email-task-work",
|
|
143
145
|
ACCOUNT_AI: "account-ai",
|
|
144
146
|
ACCOUNT_AI_INFO: "account-ai-info",
|
|
145
147
|
ACCOUNT_AI_GROUP: "account-ai-group",
|
|
@@ -520,10 +522,19 @@ __export(ai_exports, {
|
|
|
520
522
|
EAIVersionImage: () => EAIVersionImage,
|
|
521
523
|
EAIVersionPerplexity: () => EAIVersionPerplexity,
|
|
522
524
|
EAIVersionVoice: () => EAIVersionVoice,
|
|
525
|
+
EEmailTagType: () => EEmailTagType,
|
|
523
526
|
EStatusAccountAI: () => EStatusAccountAI,
|
|
524
527
|
EStatusEmail: () => EStatusEmail
|
|
525
528
|
});
|
|
526
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
|
+
|
|
527
538
|
// src/enums/ai/model/EAIModelContent.enum.ts
|
|
528
539
|
var EAIModelContent = /* @__PURE__ */ ((EAIModelContent2) => {
|
|
529
540
|
EAIModelContent2["GPT"] = "GPT";
|
package/dist/index.mjs
CHANGED
|
@@ -117,6 +117,8 @@ var CONST_API_CONTROLLERS = {
|
|
|
117
117
|
MANAGER_SHEET_CHILDREN_GROUP: "manager-sheet-children-group",
|
|
118
118
|
MANAGER_SHEET_CHILDREN_GROUP_ITEM: "manager-sheet-children-group-item",
|
|
119
119
|
ACCOUNT_EMAIL: "account-email",
|
|
120
|
+
ACCOUNT_EMAIL_PROXY: "account-email-proxy",
|
|
121
|
+
ACCOUNT_EMAIL_TASK_WORK: "account-email-task-work",
|
|
120
122
|
ACCOUNT_AI: "account-ai",
|
|
121
123
|
ACCOUNT_AI_INFO: "account-ai-info",
|
|
122
124
|
ACCOUNT_AI_GROUP: "account-ai-group",
|
|
@@ -497,10 +499,19 @@ __export(ai_exports, {
|
|
|
497
499
|
EAIVersionImage: () => EAIVersionImage,
|
|
498
500
|
EAIVersionPerplexity: () => EAIVersionPerplexity,
|
|
499
501
|
EAIVersionVoice: () => EAIVersionVoice,
|
|
502
|
+
EEmailTagType: () => EEmailTagType,
|
|
500
503
|
EStatusAccountAI: () => EStatusAccountAI,
|
|
501
504
|
EStatusEmail: () => EStatusEmail
|
|
502
505
|
});
|
|
503
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
|
+
|
|
504
515
|
// src/enums/ai/model/EAIModelContent.enum.ts
|
|
505
516
|
var EAIModelContent = /* @__PURE__ */ ((EAIModelContent2) => {
|
|
506
517
|
EAIModelContent2["GPT"] = "GPT";
|