automation-lib 4.8.92 → 4.8.93
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 +22 -17
- package/dist/index.d.ts +22 -17
- package/dist/index.js +8 -8
- package/dist/index.mjs +8 -8
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -213,7 +213,7 @@ declare namespace index$a {
|
|
|
213
213
|
export { index$a_EGender as EGender, index$a_EPriority as EPriority };
|
|
214
214
|
}
|
|
215
215
|
|
|
216
|
-
declare enum
|
|
216
|
+
declare enum EModelAI {
|
|
217
217
|
GPT = "GPT",
|
|
218
218
|
Perplexity = "Perplexity",
|
|
219
219
|
DeepSeek = "DeepSeek",
|
|
@@ -322,8 +322,8 @@ declare enum ETypeSheetWorkPin {
|
|
|
322
322
|
Secondary = "Secondary"
|
|
323
323
|
}
|
|
324
324
|
|
|
325
|
-
type index$
|
|
326
|
-
declare const index$
|
|
325
|
+
type index$9_EModelAI = EModelAI;
|
|
326
|
+
declare const index$9_EModelAI: typeof EModelAI;
|
|
327
327
|
type index$9_ETypeCanva = ETypeCanva;
|
|
328
328
|
declare const index$9_ETypeCanva: typeof ETypeCanva;
|
|
329
329
|
type index$9_ETypeLarkError = ETypeLarkError;
|
|
@@ -351,7 +351,7 @@ declare const index$9_ETypeTimeFilter: typeof ETypeTimeFilter;
|
|
|
351
351
|
type index$9_ETypeVoiceLanguage = ETypeVoiceLanguage;
|
|
352
352
|
declare const index$9_ETypeVoiceLanguage: typeof ETypeVoiceLanguage;
|
|
353
353
|
declare namespace index$9 {
|
|
354
|
-
export { index$
|
|
354
|
+
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
355
|
}
|
|
356
356
|
|
|
357
357
|
declare enum EStatusVPS {
|
|
@@ -614,19 +614,11 @@ interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, Bo
|
|
|
614
614
|
}
|
|
615
615
|
|
|
616
616
|
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
617
|
-
|
|
617
|
+
groupsAI: string[] | IAccountAIGroup[];
|
|
618
618
|
idea: string | IIdea;
|
|
619
619
|
niche: string[] | INiche[];
|
|
620
|
+
tags: string[] | IAccountAITag[];
|
|
620
621
|
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
622
|
}
|
|
631
623
|
|
|
632
624
|
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
@@ -635,8 +627,20 @@ interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
|
635
627
|
color: string;
|
|
636
628
|
}
|
|
637
629
|
|
|
638
|
-
interface
|
|
630
|
+
interface IAccountAIInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
639
631
|
accountAI: string | IAccountAI;
|
|
632
|
+
model: EModelAI;
|
|
633
|
+
provider: string;
|
|
634
|
+
versionModel: string;
|
|
635
|
+
email: string;
|
|
636
|
+
password: string;
|
|
637
|
+
emailPassword: string;
|
|
638
|
+
email2FA: string;
|
|
639
|
+
isActive: boolean;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
643
|
+
accountAIInfo: string | IAccountAIInfo;
|
|
640
644
|
name: string;
|
|
641
645
|
url: string;
|
|
642
646
|
}
|
|
@@ -655,7 +659,6 @@ interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceM
|
|
|
655
659
|
displayName: string;
|
|
656
660
|
isActive: boolean;
|
|
657
661
|
status: EStatusVPS;
|
|
658
|
-
listAccountAI: string[] | IAccountAI[];
|
|
659
662
|
}
|
|
660
663
|
|
|
661
664
|
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
@@ -1025,6 +1028,7 @@ interface ITaskAIItemGroup {
|
|
|
1025
1028
|
name: string;
|
|
1026
1029
|
order: number;
|
|
1027
1030
|
listItemAction: Array<ITaskAIItemAction>;
|
|
1031
|
+
status: EStatusTaskAI;
|
|
1028
1032
|
}
|
|
1029
1033
|
interface ITaskAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1030
1034
|
accountAI: string | IAccountAI;
|
|
@@ -1141,6 +1145,7 @@ type index$4_IAccount = IAccount;
|
|
|
1141
1145
|
type index$4_IAccountAI = IAccountAI;
|
|
1142
1146
|
type index$4_IAccountAIChannel = IAccountAIChannel;
|
|
1143
1147
|
type index$4_IAccountAIGroup = IAccountAIGroup;
|
|
1148
|
+
type index$4_IAccountAIInfo = IAccountAIInfo;
|
|
1144
1149
|
type index$4_IAccountAITag = IAccountAITag;
|
|
1145
1150
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
1146
1151
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
@@ -1176,7 +1181,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1176
1181
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1177
1182
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1178
1183
|
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 };
|
|
1184
|
+
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
1185
|
}
|
|
1181
1186
|
|
|
1182
1187
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -213,7 +213,7 @@ declare namespace index$a {
|
|
|
213
213
|
export { index$a_EGender as EGender, index$a_EPriority as EPriority };
|
|
214
214
|
}
|
|
215
215
|
|
|
216
|
-
declare enum
|
|
216
|
+
declare enum EModelAI {
|
|
217
217
|
GPT = "GPT",
|
|
218
218
|
Perplexity = "Perplexity",
|
|
219
219
|
DeepSeek = "DeepSeek",
|
|
@@ -322,8 +322,8 @@ declare enum ETypeSheetWorkPin {
|
|
|
322
322
|
Secondary = "Secondary"
|
|
323
323
|
}
|
|
324
324
|
|
|
325
|
-
type index$
|
|
326
|
-
declare const index$
|
|
325
|
+
type index$9_EModelAI = EModelAI;
|
|
326
|
+
declare const index$9_EModelAI: typeof EModelAI;
|
|
327
327
|
type index$9_ETypeCanva = ETypeCanva;
|
|
328
328
|
declare const index$9_ETypeCanva: typeof ETypeCanva;
|
|
329
329
|
type index$9_ETypeLarkError = ETypeLarkError;
|
|
@@ -351,7 +351,7 @@ declare const index$9_ETypeTimeFilter: typeof ETypeTimeFilter;
|
|
|
351
351
|
type index$9_ETypeVoiceLanguage = ETypeVoiceLanguage;
|
|
352
352
|
declare const index$9_ETypeVoiceLanguage: typeof ETypeVoiceLanguage;
|
|
353
353
|
declare namespace index$9 {
|
|
354
|
-
export { index$
|
|
354
|
+
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
355
|
}
|
|
356
356
|
|
|
357
357
|
declare enum EStatusVPS {
|
|
@@ -614,19 +614,11 @@ interface ITrackingScriptExecuted extends BoInterfaceModelsCommon.IBaseModel, Bo
|
|
|
614
614
|
}
|
|
615
615
|
|
|
616
616
|
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
617
|
-
|
|
617
|
+
groupsAI: string[] | IAccountAIGroup[];
|
|
618
618
|
idea: string | IIdea;
|
|
619
619
|
niche: string[] | INiche[];
|
|
620
|
+
tags: string[] | IAccountAITag[];
|
|
620
621
|
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
622
|
}
|
|
631
623
|
|
|
632
624
|
interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
@@ -635,8 +627,20 @@ interface IAccountAITag extends BoInterfaceModelsCommon$1.IBaseModel {
|
|
|
635
627
|
color: string;
|
|
636
628
|
}
|
|
637
629
|
|
|
638
|
-
interface
|
|
630
|
+
interface IAccountAIInfo extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
639
631
|
accountAI: string | IAccountAI;
|
|
632
|
+
model: EModelAI;
|
|
633
|
+
provider: string;
|
|
634
|
+
versionModel: string;
|
|
635
|
+
email: string;
|
|
636
|
+
password: string;
|
|
637
|
+
emailPassword: string;
|
|
638
|
+
email2FA: string;
|
|
639
|
+
isActive: boolean;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
643
|
+
accountAIInfo: string | IAccountAIInfo;
|
|
640
644
|
name: string;
|
|
641
645
|
url: string;
|
|
642
646
|
}
|
|
@@ -655,7 +659,6 @@ interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceM
|
|
|
655
659
|
displayName: string;
|
|
656
660
|
isActive: boolean;
|
|
657
661
|
status: EStatusVPS;
|
|
658
|
-
listAccountAI: string[] | IAccountAI[];
|
|
659
662
|
}
|
|
660
663
|
|
|
661
664
|
interface IAccountsGroup extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
@@ -1025,6 +1028,7 @@ interface ITaskAIItemGroup {
|
|
|
1025
1028
|
name: string;
|
|
1026
1029
|
order: number;
|
|
1027
1030
|
listItemAction: Array<ITaskAIItemAction>;
|
|
1031
|
+
status: EStatusTaskAI;
|
|
1028
1032
|
}
|
|
1029
1033
|
interface ITaskAI extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
|
1030
1034
|
accountAI: string | IAccountAI;
|
|
@@ -1141,6 +1145,7 @@ type index$4_IAccount = IAccount;
|
|
|
1141
1145
|
type index$4_IAccountAI = IAccountAI;
|
|
1142
1146
|
type index$4_IAccountAIChannel = IAccountAIChannel;
|
|
1143
1147
|
type index$4_IAccountAIGroup = IAccountAIGroup;
|
|
1148
|
+
type index$4_IAccountAIInfo = IAccountAIInfo;
|
|
1144
1149
|
type index$4_IAccountAITag = IAccountAITag;
|
|
1145
1150
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
1146
1151
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
@@ -1176,7 +1181,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1176
1181
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1177
1182
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1178
1183
|
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 };
|
|
1184
|
+
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
1185
|
}
|
|
1181
1186
|
|
|
1182
1187
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.js
CHANGED
|
@@ -266,7 +266,7 @@ var EPriority = /* @__PURE__ */ ((EPriority2) => {
|
|
|
266
266
|
// src/enums/types/index.ts
|
|
267
267
|
var types_exports = {};
|
|
268
268
|
__export(types_exports, {
|
|
269
|
-
|
|
269
|
+
EModelAI: () => EModelAI,
|
|
270
270
|
ETypeCanva: () => ETypeCanva,
|
|
271
271
|
ETypeLarkError: () => ETypeLarkError,
|
|
272
272
|
ETypeLarkObject: () => ETypeLarkObject,
|
|
@@ -283,13 +283,13 @@ __export(types_exports, {
|
|
|
283
283
|
});
|
|
284
284
|
|
|
285
285
|
// src/enums/types/ETypeAccountAI.enum.ts
|
|
286
|
-
var
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
return
|
|
292
|
-
})(
|
|
286
|
+
var EModelAI = /* @__PURE__ */ ((EModelAI2) => {
|
|
287
|
+
EModelAI2["GPT"] = "GPT";
|
|
288
|
+
EModelAI2["Perplexity"] = "Perplexity";
|
|
289
|
+
EModelAI2["DeepSeek"] = "DeepSeek";
|
|
290
|
+
EModelAI2["Gemini"] = "Gemini";
|
|
291
|
+
return EModelAI2;
|
|
292
|
+
})(EModelAI || {});
|
|
293
293
|
|
|
294
294
|
// src/enums/types/ETypeVoiceLanguage.enum.ts
|
|
295
295
|
var ETypeVoiceLanguage = /* @__PURE__ */ ((ETypeVoiceLanguage2) => {
|
package/dist/index.mjs
CHANGED
|
@@ -243,7 +243,7 @@ var EPriority = /* @__PURE__ */ ((EPriority2) => {
|
|
|
243
243
|
// src/enums/types/index.ts
|
|
244
244
|
var types_exports = {};
|
|
245
245
|
__export(types_exports, {
|
|
246
|
-
|
|
246
|
+
EModelAI: () => EModelAI,
|
|
247
247
|
ETypeCanva: () => ETypeCanva,
|
|
248
248
|
ETypeLarkError: () => ETypeLarkError,
|
|
249
249
|
ETypeLarkObject: () => ETypeLarkObject,
|
|
@@ -260,13 +260,13 @@ __export(types_exports, {
|
|
|
260
260
|
});
|
|
261
261
|
|
|
262
262
|
// src/enums/types/ETypeAccountAI.enum.ts
|
|
263
|
-
var
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
return
|
|
269
|
-
})(
|
|
263
|
+
var EModelAI = /* @__PURE__ */ ((EModelAI2) => {
|
|
264
|
+
EModelAI2["GPT"] = "GPT";
|
|
265
|
+
EModelAI2["Perplexity"] = "Perplexity";
|
|
266
|
+
EModelAI2["DeepSeek"] = "DeepSeek";
|
|
267
|
+
EModelAI2["Gemini"] = "Gemini";
|
|
268
|
+
return EModelAI2;
|
|
269
|
+
})(EModelAI || {});
|
|
270
270
|
|
|
271
271
|
// src/enums/types/ETypeVoiceLanguage.enum.ts
|
|
272
272
|
var ETypeVoiceLanguage = /* @__PURE__ */ ((ETypeVoiceLanguage2) => {
|