automation-lib 4.8.92 → 4.8.94
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 +23 -17
- package/dist/index.d.ts +23 -17
- package/dist/index.js +9 -8
- package/dist/index.mjs +9 -8
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -94,6 +94,7 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
94
94
|
MANAGER_SHEET_CHILDREN_GROUP: string;
|
|
95
95
|
MANAGER_SHEET_CHILDREN_GROUP_ITEM: string;
|
|
96
96
|
ACCOUNT_AI: string;
|
|
97
|
+
ACCOUNT_AI_INFO: string;
|
|
97
98
|
ACCOUNT_AI_GROUP: string;
|
|
98
99
|
ACCOUNT_AI_CHANNEL: string;
|
|
99
100
|
ACCOUNT_AI_TAG: string;
|
|
@@ -213,7 +214,7 @@ declare namespace index$a {
|
|
|
213
214
|
export { index$a_EGender as EGender, index$a_EPriority as EPriority };
|
|
214
215
|
}
|
|
215
216
|
|
|
216
|
-
declare enum
|
|
217
|
+
declare enum EModelAI {
|
|
217
218
|
GPT = "GPT",
|
|
218
219
|
Perplexity = "Perplexity",
|
|
219
220
|
DeepSeek = "DeepSeek",
|
|
@@ -322,8 +323,8 @@ declare enum ETypeSheetWorkPin {
|
|
|
322
323
|
Secondary = "Secondary"
|
|
323
324
|
}
|
|
324
325
|
|
|
325
|
-
type index$
|
|
326
|
-
declare const index$
|
|
326
|
+
type index$9_EModelAI = EModelAI;
|
|
327
|
+
declare const index$9_EModelAI: typeof EModelAI;
|
|
327
328
|
type index$9_ETypeCanva = ETypeCanva;
|
|
328
329
|
declare const index$9_ETypeCanva: typeof ETypeCanva;
|
|
329
330
|
type index$9_ETypeLarkError = ETypeLarkError;
|
|
@@ -351,7 +352,7 @@ declare const index$9_ETypeTimeFilter: typeof ETypeTimeFilter;
|
|
|
351
352
|
type index$9_ETypeVoiceLanguage = ETypeVoiceLanguage;
|
|
352
353
|
declare const index$9_ETypeVoiceLanguage: typeof ETypeVoiceLanguage;
|
|
353
354
|
declare namespace index$9 {
|
|
354
|
-
export { index$
|
|
355
|
+
export { index$9_EModelAI as EModelAI, index$9_ETypeCanva as ETypeCanva, index$9_ETypeLarkError as ETypeLarkError, index$9_ETypeLarkObject as ETypeLarkObject, index$9_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$9_ETypeManagerWorkPin as ETypeManagerWorkPin, index$9_ETypeManagerWorkType as ETypeManagerWorkType, index$9_ETypeNotification as ETypeNotification, index$9_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$9_ETypeSheetWorkPin as ETypeSheetWorkPin, index$9_ETypeSocial as ETypeSocial, index$9_ETypeSocialSetting as ETypeSocialSetting, index$9_ETypeTimeFilter as ETypeTimeFilter, index$9_ETypeVoiceLanguage as ETypeVoiceLanguage };
|
|
355
356
|
}
|
|
356
357
|
|
|
357
358
|
declare enum EStatusVPS {
|
|
@@ -614,19 +615,11 @@ interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, Bo
|
|
|
614
615
|
}
|
|
615
616
|
|
|
616
617
|
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
617
|
-
|
|
618
|
+
groupsAI: string[] | IAccountAIGroup[];
|
|
618
619
|
idea: string | IIdea;
|
|
619
620
|
niche: string[] | INiche[];
|
|
621
|
+
tags: string[] | IAccountAITag[];
|
|
620
622
|
membersAssigned: string[] | IUser[];
|
|
621
|
-
groupsAI: string[] | IAccountAIGroup[];
|
|
622
|
-
email: string;
|
|
623
|
-
password: string;
|
|
624
|
-
emailPassword: string;
|
|
625
|
-
email2FA: string;
|
|
626
|
-
provider: string;
|
|
627
|
-
type: ETypeAccountAI;
|
|
628
|
-
versionAI: string;
|
|
629
|
-
isActive: boolean;
|
|
630
623
|
}
|
|
631
624
|
|
|
632
625
|
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
@@ -635,8 +628,20 @@ interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
|
635
628
|
color: string;
|
|
636
629
|
}
|
|
637
630
|
|
|
638
|
-
interface
|
|
631
|
+
interface IAccountAIInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
639
632
|
accountAI: string | IAccountAI;
|
|
633
|
+
model: EModelAI;
|
|
634
|
+
provider: string;
|
|
635
|
+
versionModel: string;
|
|
636
|
+
email: string;
|
|
637
|
+
password: string;
|
|
638
|
+
emailPassword: string;
|
|
639
|
+
email2FA: string;
|
|
640
|
+
isActive: boolean;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
644
|
+
accountAIInfo: string | IAccountAIInfo;
|
|
640
645
|
name: string;
|
|
641
646
|
url: string;
|
|
642
647
|
}
|
|
@@ -655,7 +660,6 @@ interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceM
|
|
|
655
660
|
displayName: string;
|
|
656
661
|
isActive: boolean;
|
|
657
662
|
status: EStatusVPS;
|
|
658
|
-
listAccountAI: string[] | IAccountAI[];
|
|
659
663
|
}
|
|
660
664
|
|
|
661
665
|
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
@@ -1025,6 +1029,7 @@ interface ITaskAIItemGroup {
|
|
|
1025
1029
|
name: string;
|
|
1026
1030
|
order: number;
|
|
1027
1031
|
listItemAction: Array<ITaskAIItemAction>;
|
|
1032
|
+
status: EStatusTaskAI;
|
|
1028
1033
|
}
|
|
1029
1034
|
interface ITaskAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1030
1035
|
accountAI: string | IAccountAI;
|
|
@@ -1141,6 +1146,7 @@ type index$4_IAccount = IAccount;
|
|
|
1141
1146
|
type index$4_IAccountAI = IAccountAI;
|
|
1142
1147
|
type index$4_IAccountAIChannel = IAccountAIChannel;
|
|
1143
1148
|
type index$4_IAccountAIGroup = IAccountAIGroup;
|
|
1149
|
+
type index$4_IAccountAIInfo = IAccountAIInfo;
|
|
1144
1150
|
type index$4_IAccountAITag = IAccountAITag;
|
|
1145
1151
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
1146
1152
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
@@ -1176,7 +1182,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1176
1182
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1177
1183
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1178
1184
|
declare namespace index$4 {
|
|
1179
|
-
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountAITag as IAccountAITag, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, 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 };
|
|
1185
|
+
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountAIInfo as IAccountAIInfo, index$4_IAccountAITag as IAccountAITag, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, 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 };
|
|
1180
1186
|
}
|
|
1181
1187
|
|
|
1182
1188
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -94,6 +94,7 @@ declare const CONST_API_CONTROLLERS: {
|
|
|
94
94
|
MANAGER_SHEET_CHILDREN_GROUP: string;
|
|
95
95
|
MANAGER_SHEET_CHILDREN_GROUP_ITEM: string;
|
|
96
96
|
ACCOUNT_AI: string;
|
|
97
|
+
ACCOUNT_AI_INFO: string;
|
|
97
98
|
ACCOUNT_AI_GROUP: string;
|
|
98
99
|
ACCOUNT_AI_CHANNEL: string;
|
|
99
100
|
ACCOUNT_AI_TAG: string;
|
|
@@ -213,7 +214,7 @@ declare namespace index$a {
|
|
|
213
214
|
export { index$a_EGender as EGender, index$a_EPriority as EPriority };
|
|
214
215
|
}
|
|
215
216
|
|
|
216
|
-
declare enum
|
|
217
|
+
declare enum EModelAI {
|
|
217
218
|
GPT = "GPT",
|
|
218
219
|
Perplexity = "Perplexity",
|
|
219
220
|
DeepSeek = "DeepSeek",
|
|
@@ -322,8 +323,8 @@ declare enum ETypeSheetWorkPin {
|
|
|
322
323
|
Secondary = "Secondary"
|
|
323
324
|
}
|
|
324
325
|
|
|
325
|
-
type index$
|
|
326
|
-
declare const index$
|
|
326
|
+
type index$9_EModelAI = EModelAI;
|
|
327
|
+
declare const index$9_EModelAI: typeof EModelAI;
|
|
327
328
|
type index$9_ETypeCanva = ETypeCanva;
|
|
328
329
|
declare const index$9_ETypeCanva: typeof ETypeCanva;
|
|
329
330
|
type index$9_ETypeLarkError = ETypeLarkError;
|
|
@@ -351,7 +352,7 @@ declare const index$9_ETypeTimeFilter: typeof ETypeTimeFilter;
|
|
|
351
352
|
type index$9_ETypeVoiceLanguage = ETypeVoiceLanguage;
|
|
352
353
|
declare const index$9_ETypeVoiceLanguage: typeof ETypeVoiceLanguage;
|
|
353
354
|
declare namespace index$9 {
|
|
354
|
-
export { index$
|
|
355
|
+
export { index$9_EModelAI as EModelAI, index$9_ETypeCanva as ETypeCanva, index$9_ETypeLarkError as ETypeLarkError, index$9_ETypeLarkObject as ETypeLarkObject, index$9_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$9_ETypeManagerWorkPin as ETypeManagerWorkPin, index$9_ETypeManagerWorkType as ETypeManagerWorkType, index$9_ETypeNotification as ETypeNotification, index$9_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$9_ETypeSheetWorkPin as ETypeSheetWorkPin, index$9_ETypeSocial as ETypeSocial, index$9_ETypeSocialSetting as ETypeSocialSetting, index$9_ETypeTimeFilter as ETypeTimeFilter, index$9_ETypeVoiceLanguage as ETypeVoiceLanguage };
|
|
355
356
|
}
|
|
356
357
|
|
|
357
358
|
declare enum EStatusVPS {
|
|
@@ -614,19 +615,11 @@ interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, Bo
|
|
|
614
615
|
}
|
|
615
616
|
|
|
616
617
|
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
617
|
-
|
|
618
|
+
groupsAI: string[] | IAccountAIGroup[];
|
|
618
619
|
idea: string | IIdea;
|
|
619
620
|
niche: string[] | INiche[];
|
|
621
|
+
tags: string[] | IAccountAITag[];
|
|
620
622
|
membersAssigned: string[] | IUser[];
|
|
621
|
-
groupsAI: string[] | IAccountAIGroup[];
|
|
622
|
-
email: string;
|
|
623
|
-
password: string;
|
|
624
|
-
emailPassword: string;
|
|
625
|
-
email2FA: string;
|
|
626
|
-
provider: string;
|
|
627
|
-
type: ETypeAccountAI;
|
|
628
|
-
versionAI: string;
|
|
629
|
-
isActive: boolean;
|
|
630
623
|
}
|
|
631
624
|
|
|
632
625
|
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
@@ -635,8 +628,20 @@ interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
|
635
628
|
color: string;
|
|
636
629
|
}
|
|
637
630
|
|
|
638
|
-
interface
|
|
631
|
+
interface IAccountAIInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
639
632
|
accountAI: string | IAccountAI;
|
|
633
|
+
model: EModelAI;
|
|
634
|
+
provider: string;
|
|
635
|
+
versionModel: string;
|
|
636
|
+
email: string;
|
|
637
|
+
password: string;
|
|
638
|
+
emailPassword: string;
|
|
639
|
+
email2FA: string;
|
|
640
|
+
isActive: boolean;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
644
|
+
accountAIInfo: string | IAccountAIInfo;
|
|
640
645
|
name: string;
|
|
641
646
|
url: string;
|
|
642
647
|
}
|
|
@@ -655,7 +660,6 @@ interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceM
|
|
|
655
660
|
displayName: string;
|
|
656
661
|
isActive: boolean;
|
|
657
662
|
status: EStatusVPS;
|
|
658
|
-
listAccountAI: string[] | IAccountAI[];
|
|
659
663
|
}
|
|
660
664
|
|
|
661
665
|
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
@@ -1025,6 +1029,7 @@ interface ITaskAIItemGroup {
|
|
|
1025
1029
|
name: string;
|
|
1026
1030
|
order: number;
|
|
1027
1031
|
listItemAction: Array<ITaskAIItemAction>;
|
|
1032
|
+
status: EStatusTaskAI;
|
|
1028
1033
|
}
|
|
1029
1034
|
interface ITaskAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1030
1035
|
accountAI: string | IAccountAI;
|
|
@@ -1141,6 +1146,7 @@ type index$4_IAccount = IAccount;
|
|
|
1141
1146
|
type index$4_IAccountAI = IAccountAI;
|
|
1142
1147
|
type index$4_IAccountAIChannel = IAccountAIChannel;
|
|
1143
1148
|
type index$4_IAccountAIGroup = IAccountAIGroup;
|
|
1149
|
+
type index$4_IAccountAIInfo = IAccountAIInfo;
|
|
1144
1150
|
type index$4_IAccountAITag = IAccountAITag;
|
|
1145
1151
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
1146
1152
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
@@ -1176,7 +1182,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1176
1182
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1177
1183
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1178
1184
|
declare namespace index$4 {
|
|
1179
|
-
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountAITag as IAccountAITag, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, 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 };
|
|
1185
|
+
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountAIInfo as IAccountAIInfo, index$4_IAccountAITag as IAccountAITag, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, 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 };
|
|
1180
1186
|
}
|
|
1181
1187
|
|
|
1182
1188
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.js
CHANGED
|
@@ -139,6 +139,7 @@ var CONST_API_CONTROLLERS = {
|
|
|
139
139
|
MANAGER_SHEET_CHILDREN_GROUP: "manager-sheet-children-group",
|
|
140
140
|
MANAGER_SHEET_CHILDREN_GROUP_ITEM: "manager-sheet-children-group-item",
|
|
141
141
|
ACCOUNT_AI: "account-ai",
|
|
142
|
+
ACCOUNT_AI_INFO: "account-ai-info",
|
|
142
143
|
ACCOUNT_AI_GROUP: "account-group",
|
|
143
144
|
ACCOUNT_AI_CHANNEL: "account-channel",
|
|
144
145
|
ACCOUNT_AI_TAG: "account-tag",
|
|
@@ -266,7 +267,7 @@ var EPriority = /* @__PURE__ */ ((EPriority2) => {
|
|
|
266
267
|
// src/enums/types/index.ts
|
|
267
268
|
var types_exports = {};
|
|
268
269
|
__export(types_exports, {
|
|
269
|
-
|
|
270
|
+
EModelAI: () => EModelAI,
|
|
270
271
|
ETypeCanva: () => ETypeCanva,
|
|
271
272
|
ETypeLarkError: () => ETypeLarkError,
|
|
272
273
|
ETypeLarkObject: () => ETypeLarkObject,
|
|
@@ -283,13 +284,13 @@ __export(types_exports, {
|
|
|
283
284
|
});
|
|
284
285
|
|
|
285
286
|
// src/enums/types/ETypeAccountAI.enum.ts
|
|
286
|
-
var
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
return
|
|
292
|
-
})(
|
|
287
|
+
var EModelAI = /* @__PURE__ */ ((EModelAI2) => {
|
|
288
|
+
EModelAI2["GPT"] = "GPT";
|
|
289
|
+
EModelAI2["Perplexity"] = "Perplexity";
|
|
290
|
+
EModelAI2["DeepSeek"] = "DeepSeek";
|
|
291
|
+
EModelAI2["Gemini"] = "Gemini";
|
|
292
|
+
return EModelAI2;
|
|
293
|
+
})(EModelAI || {});
|
|
293
294
|
|
|
294
295
|
// src/enums/types/ETypeVoiceLanguage.enum.ts
|
|
295
296
|
var ETypeVoiceLanguage = /* @__PURE__ */ ((ETypeVoiceLanguage2) => {
|
package/dist/index.mjs
CHANGED
|
@@ -116,6 +116,7 @@ var CONST_API_CONTROLLERS = {
|
|
|
116
116
|
MANAGER_SHEET_CHILDREN_GROUP: "manager-sheet-children-group",
|
|
117
117
|
MANAGER_SHEET_CHILDREN_GROUP_ITEM: "manager-sheet-children-group-item",
|
|
118
118
|
ACCOUNT_AI: "account-ai",
|
|
119
|
+
ACCOUNT_AI_INFO: "account-ai-info",
|
|
119
120
|
ACCOUNT_AI_GROUP: "account-group",
|
|
120
121
|
ACCOUNT_AI_CHANNEL: "account-channel",
|
|
121
122
|
ACCOUNT_AI_TAG: "account-tag",
|
|
@@ -243,7 +244,7 @@ var EPriority = /* @__PURE__ */ ((EPriority2) => {
|
|
|
243
244
|
// src/enums/types/index.ts
|
|
244
245
|
var types_exports = {};
|
|
245
246
|
__export(types_exports, {
|
|
246
|
-
|
|
247
|
+
EModelAI: () => EModelAI,
|
|
247
248
|
ETypeCanva: () => ETypeCanva,
|
|
248
249
|
ETypeLarkError: () => ETypeLarkError,
|
|
249
250
|
ETypeLarkObject: () => ETypeLarkObject,
|
|
@@ -260,13 +261,13 @@ __export(types_exports, {
|
|
|
260
261
|
});
|
|
261
262
|
|
|
262
263
|
// src/enums/types/ETypeAccountAI.enum.ts
|
|
263
|
-
var
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
return
|
|
269
|
-
})(
|
|
264
|
+
var EModelAI = /* @__PURE__ */ ((EModelAI2) => {
|
|
265
|
+
EModelAI2["GPT"] = "GPT";
|
|
266
|
+
EModelAI2["Perplexity"] = "Perplexity";
|
|
267
|
+
EModelAI2["DeepSeek"] = "DeepSeek";
|
|
268
|
+
EModelAI2["Gemini"] = "Gemini";
|
|
269
|
+
return EModelAI2;
|
|
270
|
+
})(EModelAI || {});
|
|
270
271
|
|
|
271
272
|
// src/enums/types/ETypeVoiceLanguage.enum.ts
|
|
272
273
|
var ETypeVoiceLanguage = /* @__PURE__ */ ((ETypeVoiceLanguage2) => {
|