automation-lib 4.8.71 → 4.8.73
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 +33 -7
- package/dist/index.d.ts +33 -7
- package/dist/index.js +2 -3
- package/dist/index.mjs +2 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -210,10 +210,9 @@ declare namespace index$a {
|
|
|
210
210
|
|
|
211
211
|
declare enum ETypeAccountAI {
|
|
212
212
|
GPT = "GPT",
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
Gemini = "Gemini"
|
|
216
|
-
DeepSeek = "DeepSeek"
|
|
213
|
+
Perplexity = "Perplexity",
|
|
214
|
+
DeepSeek = "DeepSeek",
|
|
215
|
+
Gemini = "Gemini"
|
|
217
216
|
}
|
|
218
217
|
|
|
219
218
|
declare enum ETypeVoiceLanguage {
|
|
@@ -569,15 +568,34 @@ interface IPatternCanvaCoverBackground extends BoInterfaceModelsCommon.IBaseMode
|
|
|
569
568
|
posImages: Array<ICanvaPosition>;
|
|
570
569
|
}
|
|
571
570
|
|
|
571
|
+
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
572
|
+
name: string;
|
|
573
|
+
slug: string;
|
|
574
|
+
}
|
|
575
|
+
|
|
572
576
|
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
577
|
+
category: string | IAccountAIGroup;
|
|
573
578
|
type: ETypeAccountAI;
|
|
579
|
+
provider: string;
|
|
580
|
+
versionAI: string;
|
|
574
581
|
username: string;
|
|
575
582
|
password: string;
|
|
576
|
-
urlChat: string;
|
|
577
583
|
isActive: boolean;
|
|
578
584
|
}
|
|
579
585
|
|
|
586
|
+
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
587
|
+
account: string | IAccountAI;
|
|
588
|
+
name: string;
|
|
589
|
+
url: string;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
593
|
+
name: string;
|
|
594
|
+
slug: string;
|
|
595
|
+
}
|
|
596
|
+
|
|
580
597
|
interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
598
|
+
group: string | IAccountVPSGroup;
|
|
581
599
|
ip: string;
|
|
582
600
|
port: string;
|
|
583
601
|
username: string;
|
|
@@ -1030,6 +1048,7 @@ interface IManagerSheetGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInt
|
|
|
1030
1048
|
interface IManagerSheet extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1031
1049
|
accountAI: string | IAccountAI;
|
|
1032
1050
|
group: string | IManagerSheetGroup;
|
|
1051
|
+
standardColumn: string;
|
|
1033
1052
|
url: string;
|
|
1034
1053
|
name: string;
|
|
1035
1054
|
isActive: boolean;
|
|
@@ -1038,13 +1057,18 @@ interface IManagerSheet extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfac
|
|
|
1038
1057
|
interface IManagerSheetChildren extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1039
1058
|
managerSheet: string | IManagerSheet;
|
|
1040
1059
|
name: string;
|
|
1041
|
-
|
|
1060
|
+
listColumnActions: Array<{
|
|
1061
|
+
key: number;
|
|
1062
|
+
name: number;
|
|
1063
|
+
}>;
|
|
1042
1064
|
isActive: boolean;
|
|
1043
1065
|
}
|
|
1044
1066
|
|
|
1045
1067
|
interface IManagerSheetChildrenGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1046
1068
|
sheetChildren: string | IManagerSheetChildren;
|
|
1047
1069
|
name: string;
|
|
1070
|
+
slug: string;
|
|
1071
|
+
order: number;
|
|
1048
1072
|
}
|
|
1049
1073
|
|
|
1050
1074
|
interface IManagerSheetChildrenGroupItem extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
@@ -1057,6 +1081,8 @@ interface IManagerSheetChildrenGroupItem extends BoInterfaceModelsCommon$1.IBase
|
|
|
1057
1081
|
|
|
1058
1082
|
type index$4_IAccount = IAccount;
|
|
1059
1083
|
type index$4_IAccountAI = IAccountAI;
|
|
1084
|
+
type index$4_IAccountAIChannel = IAccountAIChannel;
|
|
1085
|
+
type index$4_IAccountAIGroup = IAccountAIGroup;
|
|
1060
1086
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
1061
1087
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
1062
1088
|
type index$4_IAccountVPS = IAccountVPS;
|
|
@@ -1087,7 +1113,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1087
1113
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1088
1114
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1089
1115
|
declare namespace index$4 {
|
|
1090
|
-
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountVPS as IAccountVPS, 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_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1116
|
+
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountVPS as IAccountVPS, 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_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1091
1117
|
}
|
|
1092
1118
|
|
|
1093
1119
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.d.ts
CHANGED
|
@@ -210,10 +210,9 @@ declare namespace index$a {
|
|
|
210
210
|
|
|
211
211
|
declare enum ETypeAccountAI {
|
|
212
212
|
GPT = "GPT",
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
Gemini = "Gemini"
|
|
216
|
-
DeepSeek = "DeepSeek"
|
|
213
|
+
Perplexity = "Perplexity",
|
|
214
|
+
DeepSeek = "DeepSeek",
|
|
215
|
+
Gemini = "Gemini"
|
|
217
216
|
}
|
|
218
217
|
|
|
219
218
|
declare enum ETypeVoiceLanguage {
|
|
@@ -569,15 +568,34 @@ interface IPatternCanvaCoverBackground extends BoInterfaceModelsCommon.IBaseMode
|
|
|
569
568
|
posImages: Array<ICanvaPosition>;
|
|
570
569
|
}
|
|
571
570
|
|
|
571
|
+
interface IAccountAIGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
572
|
+
name: string;
|
|
573
|
+
slug: string;
|
|
574
|
+
}
|
|
575
|
+
|
|
572
576
|
interface IAccountAI extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
577
|
+
category: string | IAccountAIGroup;
|
|
573
578
|
type: ETypeAccountAI;
|
|
579
|
+
provider: string;
|
|
580
|
+
versionAI: string;
|
|
574
581
|
username: string;
|
|
575
582
|
password: string;
|
|
576
|
-
urlChat: string;
|
|
577
583
|
isActive: boolean;
|
|
578
584
|
}
|
|
579
585
|
|
|
586
|
+
interface IAccountAIChannel extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
587
|
+
account: string | IAccountAI;
|
|
588
|
+
name: string;
|
|
589
|
+
url: string;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
593
|
+
name: string;
|
|
594
|
+
slug: string;
|
|
595
|
+
}
|
|
596
|
+
|
|
580
597
|
interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
598
|
+
group: string | IAccountVPSGroup;
|
|
581
599
|
ip: string;
|
|
582
600
|
port: string;
|
|
583
601
|
username: string;
|
|
@@ -1030,6 +1048,7 @@ interface IManagerSheetGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInt
|
|
|
1030
1048
|
interface IManagerSheet extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1031
1049
|
accountAI: string | IAccountAI;
|
|
1032
1050
|
group: string | IManagerSheetGroup;
|
|
1051
|
+
standardColumn: string;
|
|
1033
1052
|
url: string;
|
|
1034
1053
|
name: string;
|
|
1035
1054
|
isActive: boolean;
|
|
@@ -1038,13 +1057,18 @@ interface IManagerSheet extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfac
|
|
|
1038
1057
|
interface IManagerSheetChildren extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1039
1058
|
managerSheet: string | IManagerSheet;
|
|
1040
1059
|
name: string;
|
|
1041
|
-
|
|
1060
|
+
listColumnActions: Array<{
|
|
1061
|
+
key: number;
|
|
1062
|
+
name: number;
|
|
1063
|
+
}>;
|
|
1042
1064
|
isActive: boolean;
|
|
1043
1065
|
}
|
|
1044
1066
|
|
|
1045
1067
|
interface IManagerSheetChildrenGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
1046
1068
|
sheetChildren: string | IManagerSheetChildren;
|
|
1047
1069
|
name: string;
|
|
1070
|
+
slug: string;
|
|
1071
|
+
order: number;
|
|
1048
1072
|
}
|
|
1049
1073
|
|
|
1050
1074
|
interface IManagerSheetChildrenGroupItem extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
|
|
@@ -1057,6 +1081,8 @@ interface IManagerSheetChildrenGroupItem extends BoInterfaceModelsCommon$1.IBase
|
|
|
1057
1081
|
|
|
1058
1082
|
type index$4_IAccount = IAccount;
|
|
1059
1083
|
type index$4_IAccountAI = IAccountAI;
|
|
1084
|
+
type index$4_IAccountAIChannel = IAccountAIChannel;
|
|
1085
|
+
type index$4_IAccountAIGroup = IAccountAIGroup;
|
|
1060
1086
|
type index$4_IAccountDetailEmail = IAccountDetailEmail;
|
|
1061
1087
|
type index$4_IAccountDetailSocial = IAccountDetailSocial;
|
|
1062
1088
|
type index$4_IAccountVPS = IAccountVPS;
|
|
@@ -1087,7 +1113,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
|
|
|
1087
1113
|
type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
|
|
1088
1114
|
type index$4_IVoiceStores = IVoiceStores;
|
|
1089
1115
|
declare namespace index$4 {
|
|
1090
|
-
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountVPS as IAccountVPS, 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_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1116
|
+
export type { index$4_IAccount as IAccount, index$4_IAccountAI as IAccountAI, index$4_IAccountAIChannel as IAccountAIChannel, index$4_IAccountAIGroup as IAccountAIGroup, index$4_IAccountDetailEmail as IAccountDetailEmail, index$4_IAccountDetailSocial as IAccountDetailSocial, index$4_IAccountVPS as IAccountVPS, 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_ITaskTool as ITaskTool, index$4_IVoiceGenerated as IVoiceGenerated, index$4_IVoiceLanguage as IVoiceLanguage, index$4_IVoiceSettingDelay as IVoiceSettingDelay, index$4_IVoiceStores as IVoiceStores };
|
|
1091
1117
|
}
|
|
1092
1118
|
|
|
1093
1119
|
interface IDeviceEmail extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
|
package/dist/index.js
CHANGED
|
@@ -280,10 +280,9 @@ __export(types_exports, {
|
|
|
280
280
|
// src/enums/types/ETypeAccountAI.enum.ts
|
|
281
281
|
var ETypeAccountAI = /* @__PURE__ */ ((ETypeAccountAI2) => {
|
|
282
282
|
ETypeAccountAI2["GPT"] = "GPT";
|
|
283
|
-
ETypeAccountAI2["
|
|
284
|
-
ETypeAccountAI2["Claude"] = "Claude";
|
|
285
|
-
ETypeAccountAI2["Gemini"] = "Gemini";
|
|
283
|
+
ETypeAccountAI2["Perplexity"] = "Perplexity";
|
|
286
284
|
ETypeAccountAI2["DeepSeek"] = "DeepSeek";
|
|
285
|
+
ETypeAccountAI2["Gemini"] = "Gemini";
|
|
287
286
|
return ETypeAccountAI2;
|
|
288
287
|
})(ETypeAccountAI || {});
|
|
289
288
|
|
package/dist/index.mjs
CHANGED
|
@@ -257,10 +257,9 @@ __export(types_exports, {
|
|
|
257
257
|
// src/enums/types/ETypeAccountAI.enum.ts
|
|
258
258
|
var ETypeAccountAI = /* @__PURE__ */ ((ETypeAccountAI2) => {
|
|
259
259
|
ETypeAccountAI2["GPT"] = "GPT";
|
|
260
|
-
ETypeAccountAI2["
|
|
261
|
-
ETypeAccountAI2["Claude"] = "Claude";
|
|
262
|
-
ETypeAccountAI2["Gemini"] = "Gemini";
|
|
260
|
+
ETypeAccountAI2["Perplexity"] = "Perplexity";
|
|
263
261
|
ETypeAccountAI2["DeepSeek"] = "DeepSeek";
|
|
262
|
+
ETypeAccountAI2["Gemini"] = "Gemini";
|
|
264
263
|
return ETypeAccountAI2;
|
|
265
264
|
})(ETypeAccountAI || {});
|
|
266
265
|
|