automation-lib 4.8.71 → 4.8.72

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 CHANGED
@@ -210,10 +210,9 @@ declare namespace index$a {
210
210
 
211
211
  declare enum ETypeAccountAI {
212
212
  GPT = "GPT",
213
- Grok = "Grok",
214
- Claude = "Claude",
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,14 +568,27 @@ 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: ETypeAccountAI;
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
+
580
592
  interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
581
593
  ip: string;
582
594
  port: string;
@@ -1030,6 +1042,7 @@ interface IManagerSheetGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInt
1030
1042
  interface IManagerSheet extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
1031
1043
  accountAI: string | IAccountAI;
1032
1044
  group: string | IManagerSheetGroup;
1045
+ standardColumn: string;
1033
1046
  url: string;
1034
1047
  name: string;
1035
1048
  isActive: boolean;
@@ -1038,7 +1051,10 @@ interface IManagerSheet extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfac
1038
1051
  interface IManagerSheetChildren extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
1039
1052
  managerSheet: string | IManagerSheet;
1040
1053
  name: string;
1041
- numberColumn: number;
1054
+ listColumnActions: Array<{
1055
+ key: number;
1056
+ name: number;
1057
+ }>;
1042
1058
  isActive: boolean;
1043
1059
  }
1044
1060
 
@@ -1057,6 +1073,8 @@ interface IManagerSheetChildrenGroupItem extends BoInterfaceModelsCommon$1.IBase
1057
1073
 
1058
1074
  type index$4_IAccount = IAccount;
1059
1075
  type index$4_IAccountAI = IAccountAI;
1076
+ type index$4_IAccountAIChannel = IAccountAIChannel;
1077
+ type index$4_IAccountAIGroup = IAccountAIGroup;
1060
1078
  type index$4_IAccountDetailEmail = IAccountDetailEmail;
1061
1079
  type index$4_IAccountDetailSocial = IAccountDetailSocial;
1062
1080
  type index$4_IAccountVPS = IAccountVPS;
@@ -1087,7 +1105,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
1087
1105
  type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
1088
1106
  type index$4_IVoiceStores = IVoiceStores;
1089
1107
  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 };
1108
+ 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
1109
  }
1092
1110
 
1093
1111
  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
- Grok = "Grok",
214
- Claude = "Claude",
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,14 +568,27 @@ 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: ETypeAccountAI;
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
+
580
592
  interface IAccountVPS extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
581
593
  ip: string;
582
594
  port: string;
@@ -1030,6 +1042,7 @@ interface IManagerSheetGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInt
1030
1042
  interface IManagerSheet extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
1031
1043
  accountAI: string | IAccountAI;
1032
1044
  group: string | IManagerSheetGroup;
1045
+ standardColumn: string;
1033
1046
  url: string;
1034
1047
  name: string;
1035
1048
  isActive: boolean;
@@ -1038,7 +1051,10 @@ interface IManagerSheet extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfac
1038
1051
  interface IManagerSheetChildren extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
1039
1052
  managerSheet: string | IManagerSheet;
1040
1053
  name: string;
1041
- numberColumn: number;
1054
+ listColumnActions: Array<{
1055
+ key: number;
1056
+ name: number;
1057
+ }>;
1042
1058
  isActive: boolean;
1043
1059
  }
1044
1060
 
@@ -1057,6 +1073,8 @@ interface IManagerSheetChildrenGroupItem extends BoInterfaceModelsCommon$1.IBase
1057
1073
 
1058
1074
  type index$4_IAccount = IAccount;
1059
1075
  type index$4_IAccountAI = IAccountAI;
1076
+ type index$4_IAccountAIChannel = IAccountAIChannel;
1077
+ type index$4_IAccountAIGroup = IAccountAIGroup;
1060
1078
  type index$4_IAccountDetailEmail = IAccountDetailEmail;
1061
1079
  type index$4_IAccountDetailSocial = IAccountDetailSocial;
1062
1080
  type index$4_IAccountVPS = IAccountVPS;
@@ -1087,7 +1105,7 @@ type index$4_IVoiceLanguage = IVoiceLanguage;
1087
1105
  type index$4_IVoiceSettingDelay = IVoiceSettingDelay;
1088
1106
  type index$4_IVoiceStores = IVoiceStores;
1089
1107
  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 };
1108
+ 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
1109
  }
1092
1110
 
1093
1111
  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["Grok"] = "Grok";
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["Grok"] = "Grok";
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "4.8.71",
3
+ "version": "4.8.72",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",