automation-lib 4.9.118 → 4.9.120

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
@@ -1,5 +1,6 @@
1
1
  import { BoInterfaceModelsCommon } from 'bodevops-be-common';
2
2
  import { BoInterfaceModelsCommon as BoInterfaceModelsCommon$1 } from 'bodevops-be-common/dist';
3
+ import { AutoEnums } from 'automation-lib/dist';
3
4
 
4
5
  declare const CONST_API_OTP: {
5
6
  SEND: string;
@@ -294,6 +295,11 @@ declare enum ETypeCanva {
294
295
  Horizontal = "Horizontal"
295
296
  }
296
297
 
298
+ declare enum ETypeProxy {
299
+ HTTP = "HTTP",
300
+ SOCKS5 = "SOCKS5"
301
+ }
302
+
297
303
  declare enum ETypeRatioImage {
298
304
  Square = "Square",
299
305
  Vertical = "Vertical",
@@ -336,6 +342,8 @@ type index$d_ETypeManagerWorkType = ETypeManagerWorkType;
336
342
  declare const index$d_ETypeManagerWorkType: typeof ETypeManagerWorkType;
337
343
  type index$d_ETypeNotification = ETypeNotification;
338
344
  declare const index$d_ETypeNotification: typeof ETypeNotification;
345
+ type index$d_ETypeProxy = ETypeProxy;
346
+ declare const index$d_ETypeProxy: typeof ETypeProxy;
339
347
  type index$d_ETypeRatioImage = ETypeRatioImage;
340
348
  declare const index$d_ETypeRatioImage: typeof ETypeRatioImage;
341
349
  type index$d_ETypeSheetWorkClassify = ETypeSheetWorkClassify;
@@ -351,7 +359,7 @@ declare const index$d_ETypeTimeFilter: typeof ETypeTimeFilter;
351
359
  type index$d_ETypeVoiceLanguage = ETypeVoiceLanguage;
352
360
  declare const index$d_ETypeVoiceLanguage: typeof ETypeVoiceLanguage;
353
361
  declare namespace index$d {
354
- export { index$d_ETypeCanva as ETypeCanva, index$d_ETypeColumnManagerWork as ETypeColumnManagerWork, index$d_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$d_ETypeManagerWorkPin as ETypeManagerWorkPin, index$d_ETypeManagerWorkType as ETypeManagerWorkType, index$d_ETypeNotification as ETypeNotification, index$d_ETypeRatioImage as ETypeRatioImage, index$d_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$d_ETypeSheetWorkPin as ETypeSheetWorkPin, index$d_ETypeSocial as ETypeSocial, index$d_ETypeSocialSetting as ETypeSocialSetting, index$d_ETypeTimeFilter as ETypeTimeFilter, index$d_ETypeVoiceLanguage as ETypeVoiceLanguage };
362
+ export { index$d_ETypeCanva as ETypeCanva, index$d_ETypeColumnManagerWork as ETypeColumnManagerWork, index$d_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$d_ETypeManagerWorkPin as ETypeManagerWorkPin, index$d_ETypeManagerWorkType as ETypeManagerWorkType, index$d_ETypeNotification as ETypeNotification, index$d_ETypeProxy as ETypeProxy, index$d_ETypeRatioImage as ETypeRatioImage, index$d_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$d_ETypeSheetWorkPin as ETypeSheetWorkPin, index$d_ETypeSocial as ETypeSocial, index$d_ETypeSocialSetting as ETypeSocialSetting, index$d_ETypeTimeFilter as ETypeTimeFilter, index$d_ETypeVoiceLanguage as ETypeVoiceLanguage };
355
363
  }
356
364
 
357
365
  declare enum EStatusVPS {
@@ -1054,15 +1062,6 @@ interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsC
1054
1062
  device_note: string;
1055
1063
  }
1056
1064
 
1057
- interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1058
- ps_proxy: IProxy | string;
1059
- ps_typeSocial: ETypeSocial;
1060
- ps_maximumAccountApply: number;
1061
- ps_isFulled: boolean;
1062
- ps_numberAccountApplied: number;
1063
- ps_accountApplied: IAccount[] | string[];
1064
- }
1065
-
1066
1065
  interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1067
1066
  pt_url: string;
1068
1067
  pt_name: string;
@@ -1074,6 +1073,7 @@ interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterface
1074
1073
  }
1075
1074
 
1076
1075
  interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1076
+ proxy_type: ETypeProxy;
1077
1077
  proxy_ip: string;
1078
1078
  proxy_key: string;
1079
1079
  proxy_port: string;
@@ -1086,7 +1086,6 @@ interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCo
1086
1086
  proxy_lastUsed: Date;
1087
1087
  proxy_department: string | IDepartment;
1088
1088
  proxy_user: string | IUser;
1089
- proxy_settings: Array<IProxySetting> | Array<string>;
1090
1089
  proxy_tracker: IProxyTracking | string;
1091
1090
  }
1092
1091
 
@@ -1275,6 +1274,20 @@ interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterf
1275
1274
  }>;
1276
1275
  }
1277
1276
 
1277
+ interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1278
+ ps_proxy: IProxy | string;
1279
+ ps_typeSocial: ETypeSocial;
1280
+ ps_maximumAccountApply: number;
1281
+ ps_isFulled: boolean;
1282
+ }
1283
+
1284
+ interface IProxySettingForAccount extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
1285
+ proxy: IProxy | string;
1286
+ proxySetting: IProxySetting | string;
1287
+ typeSocial: AutoEnums.Types.ETypeSocial;
1288
+ accountSocial: IAccount | string;
1289
+ }
1290
+
1278
1291
  interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
1279
1292
  name: string;
1280
1293
  slug: string;
@@ -1468,6 +1481,7 @@ type index$5_IManagerSheetGroup = IManagerSheetGroup;
1468
1481
  type index$5_IPC = IPC;
1469
1482
  type index$5_IProxy = IProxy;
1470
1483
  type index$5_IProxySetting = IProxySetting;
1484
+ type index$5_IProxySettingForAccount = IProxySettingForAccount;
1471
1485
  type index$5_IProxyTracking = IProxyTracking;
1472
1486
  type index$5_ISheetsTool = ISheetsTool;
1473
1487
  type index$5_ITaskAI = ITaskAI;
@@ -1480,7 +1494,7 @@ type index$5_IVoiceLanguage = IVoiceLanguage;
1480
1494
  type index$5_IVoiceSettingDelay = IVoiceSettingDelay;
1481
1495
  type index$5_IVoiceStores = IVoiceStores;
1482
1496
  declare namespace index$5 {
1483
- export type { index$5_IAccount as IAccount, index$5_IAccountAI as IAccountAI, index$5_IAccountAIChannel as IAccountAIChannel, index$5_IAccountAIGroup as IAccountAIGroup, index$5_IAccountAIImage as IAccountAIImage, index$5_IAccountAIImageChannel as IAccountAIImageChannel, index$5_IAccountAIImageGroup as IAccountAIImageGroup, index$5_IAccountAIImageInfo as IAccountAIImageInfo, index$5_IAccountAIImageTag as IAccountAIImageTag, index$5_IAccountAIInfo as IAccountAIInfo, index$5_IAccountAITag as IAccountAITag, index$5_IAccountAIVoice as IAccountAIVoice, index$5_IAccountAIVoiceChannel as IAccountAIVoiceChannel, index$5_IAccountAIVoiceGroup as IAccountAIVoiceGroup, index$5_IAccountAIVoiceInfo as IAccountAIVoiceInfo, index$5_IAccountAIVoiceTag as IAccountAIVoiceTag, index$5_IAccountDetailEmail as IAccountDetailEmail, index$5_IAccountDetailSocial as IAccountDetailSocial, index$5_IAccountEmail as IAccountEmail, index$5_IAccountEmailProxy as IAccountEmailProxy, index$5_IAccountEmailTag as IAccountEmailTag, index$5_IAccountEmailTaskWork as IAccountEmailTaskWork, index$5_IAccountHistory as IAccountHistory, index$5_IAccountVPS as IAccountVPS, index$5_IAccountVPSGroup as IAccountVPSGroup, index$5_IAccountsGroup as IAccountsGroup, index$5_IDevice as IDevice, index$5_IDeviceAllowPermission as IDeviceAllowPermission, index$5_IDeviceInfoEmail as IDeviceInfoEmail, index$5_IDeviceSetting as IDeviceSetting, index$5_IDeviceSettingForAccount as IDeviceSettingForAccount, index$5_IManagerImageAI as IManagerImageAI, index$5_IManagerImageAIItemStore as IManagerImageAIItemStore, index$5_IManagerImageAIUserAttached as IManagerImageAIUserAttached, index$5_IManagerSheet as IManagerSheet, index$5_IManagerSheetChildren as IManagerSheetChildren, index$5_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$5_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$5_IManagerSheetGroup as IManagerSheetGroup, index$5_IPC as IPC, index$5_IProxy as IProxy, index$5_IProxySetting as IProxySetting, index$5_IProxyTracking as IProxyTracking, index$5_ISheetsTool as ISheetsTool, index$5_ITaskAI as ITaskAI, index$5_ITaskAIImageVoice as ITaskAIImageVoice, index$5_ITaskAIItemAction as ITaskAIItemAction, index$5_ITaskAIItemGroup as ITaskAIItemGroup, index$5_ITaskTool as ITaskTool, index$5_IVoiceGenerated as IVoiceGenerated, index$5_IVoiceLanguage as IVoiceLanguage, index$5_IVoiceSettingDelay as IVoiceSettingDelay, index$5_IVoiceStores as IVoiceStores };
1497
+ export type { index$5_IAccount as IAccount, index$5_IAccountAI as IAccountAI, index$5_IAccountAIChannel as IAccountAIChannel, index$5_IAccountAIGroup as IAccountAIGroup, index$5_IAccountAIImage as IAccountAIImage, index$5_IAccountAIImageChannel as IAccountAIImageChannel, index$5_IAccountAIImageGroup as IAccountAIImageGroup, index$5_IAccountAIImageInfo as IAccountAIImageInfo, index$5_IAccountAIImageTag as IAccountAIImageTag, index$5_IAccountAIInfo as IAccountAIInfo, index$5_IAccountAITag as IAccountAITag, index$5_IAccountAIVoice as IAccountAIVoice, index$5_IAccountAIVoiceChannel as IAccountAIVoiceChannel, index$5_IAccountAIVoiceGroup as IAccountAIVoiceGroup, index$5_IAccountAIVoiceInfo as IAccountAIVoiceInfo, index$5_IAccountAIVoiceTag as IAccountAIVoiceTag, index$5_IAccountDetailEmail as IAccountDetailEmail, index$5_IAccountDetailSocial as IAccountDetailSocial, index$5_IAccountEmail as IAccountEmail, index$5_IAccountEmailProxy as IAccountEmailProxy, index$5_IAccountEmailTag as IAccountEmailTag, index$5_IAccountEmailTaskWork as IAccountEmailTaskWork, index$5_IAccountHistory as IAccountHistory, index$5_IAccountVPS as IAccountVPS, index$5_IAccountVPSGroup as IAccountVPSGroup, index$5_IAccountsGroup as IAccountsGroup, index$5_IDevice as IDevice, index$5_IDeviceAllowPermission as IDeviceAllowPermission, index$5_IDeviceInfoEmail as IDeviceInfoEmail, index$5_IDeviceSetting as IDeviceSetting, index$5_IDeviceSettingForAccount as IDeviceSettingForAccount, index$5_IManagerImageAI as IManagerImageAI, index$5_IManagerImageAIItemStore as IManagerImageAIItemStore, index$5_IManagerImageAIUserAttached as IManagerImageAIUserAttached, index$5_IManagerSheet as IManagerSheet, index$5_IManagerSheetChildren as IManagerSheetChildren, index$5_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$5_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$5_IManagerSheetGroup as IManagerSheetGroup, index$5_IPC as IPC, index$5_IProxy as IProxy, index$5_IProxySetting as IProxySetting, index$5_IProxySettingForAccount as IProxySettingForAccount, index$5_IProxyTracking as IProxyTracking, index$5_ISheetsTool as ISheetsTool, index$5_ITaskAI as ITaskAI, index$5_ITaskAIImageVoice as ITaskAIImageVoice, index$5_ITaskAIItemAction as ITaskAIItemAction, index$5_ITaskAIItemGroup as ITaskAIItemGroup, index$5_ITaskTool as ITaskTool, index$5_IVoiceGenerated as IVoiceGenerated, index$5_IVoiceLanguage as IVoiceLanguage, index$5_IVoiceSettingDelay as IVoiceSettingDelay, index$5_IVoiceStores as IVoiceStores };
1484
1498
  }
1485
1499
 
1486
1500
  interface ILogTaskAIImageVoice extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
package/dist/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { BoInterfaceModelsCommon } from 'bodevops-be-common';
2
2
  import { BoInterfaceModelsCommon as BoInterfaceModelsCommon$1 } from 'bodevops-be-common/dist';
3
+ import { AutoEnums } from 'automation-lib/dist';
3
4
 
4
5
  declare const CONST_API_OTP: {
5
6
  SEND: string;
@@ -294,6 +295,11 @@ declare enum ETypeCanva {
294
295
  Horizontal = "Horizontal"
295
296
  }
296
297
 
298
+ declare enum ETypeProxy {
299
+ HTTP = "HTTP",
300
+ SOCKS5 = "SOCKS5"
301
+ }
302
+
297
303
  declare enum ETypeRatioImage {
298
304
  Square = "Square",
299
305
  Vertical = "Vertical",
@@ -336,6 +342,8 @@ type index$d_ETypeManagerWorkType = ETypeManagerWorkType;
336
342
  declare const index$d_ETypeManagerWorkType: typeof ETypeManagerWorkType;
337
343
  type index$d_ETypeNotification = ETypeNotification;
338
344
  declare const index$d_ETypeNotification: typeof ETypeNotification;
345
+ type index$d_ETypeProxy = ETypeProxy;
346
+ declare const index$d_ETypeProxy: typeof ETypeProxy;
339
347
  type index$d_ETypeRatioImage = ETypeRatioImage;
340
348
  declare const index$d_ETypeRatioImage: typeof ETypeRatioImage;
341
349
  type index$d_ETypeSheetWorkClassify = ETypeSheetWorkClassify;
@@ -351,7 +359,7 @@ declare const index$d_ETypeTimeFilter: typeof ETypeTimeFilter;
351
359
  type index$d_ETypeVoiceLanguage = ETypeVoiceLanguage;
352
360
  declare const index$d_ETypeVoiceLanguage: typeof ETypeVoiceLanguage;
353
361
  declare namespace index$d {
354
- export { index$d_ETypeCanva as ETypeCanva, index$d_ETypeColumnManagerWork as ETypeColumnManagerWork, index$d_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$d_ETypeManagerWorkPin as ETypeManagerWorkPin, index$d_ETypeManagerWorkType as ETypeManagerWorkType, index$d_ETypeNotification as ETypeNotification, index$d_ETypeRatioImage as ETypeRatioImage, index$d_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$d_ETypeSheetWorkPin as ETypeSheetWorkPin, index$d_ETypeSocial as ETypeSocial, index$d_ETypeSocialSetting as ETypeSocialSetting, index$d_ETypeTimeFilter as ETypeTimeFilter, index$d_ETypeVoiceLanguage as ETypeVoiceLanguage };
362
+ export { index$d_ETypeCanva as ETypeCanva, index$d_ETypeColumnManagerWork as ETypeColumnManagerWork, index$d_ETypeManagerWorkClassify as ETypeManagerWorkClassify, index$d_ETypeManagerWorkPin as ETypeManagerWorkPin, index$d_ETypeManagerWorkType as ETypeManagerWorkType, index$d_ETypeNotification as ETypeNotification, index$d_ETypeProxy as ETypeProxy, index$d_ETypeRatioImage as ETypeRatioImage, index$d_ETypeSheetWorkClassify as ETypeSheetWorkClassify, index$d_ETypeSheetWorkPin as ETypeSheetWorkPin, index$d_ETypeSocial as ETypeSocial, index$d_ETypeSocialSetting as ETypeSocialSetting, index$d_ETypeTimeFilter as ETypeTimeFilter, index$d_ETypeVoiceLanguage as ETypeVoiceLanguage };
355
363
  }
356
364
 
357
365
  declare enum EStatusVPS {
@@ -1054,15 +1062,6 @@ interface IDevice extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsC
1054
1062
  device_note: string;
1055
1063
  }
1056
1064
 
1057
- interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1058
- ps_proxy: IProxy | string;
1059
- ps_typeSocial: ETypeSocial;
1060
- ps_maximumAccountApply: number;
1061
- ps_isFulled: boolean;
1062
- ps_numberAccountApplied: number;
1063
- ps_accountApplied: IAccount[] | string[];
1064
- }
1065
-
1066
1065
  interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1067
1066
  pt_url: string;
1068
1067
  pt_name: string;
@@ -1074,6 +1073,7 @@ interface IProxyTracking extends BoInterfaceModelsCommon.IBaseModel, BoInterface
1074
1073
  }
1075
1074
 
1076
1075
  interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1076
+ proxy_type: ETypeProxy;
1077
1077
  proxy_ip: string;
1078
1078
  proxy_key: string;
1079
1079
  proxy_port: string;
@@ -1086,7 +1086,6 @@ interface IProxy extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCo
1086
1086
  proxy_lastUsed: Date;
1087
1087
  proxy_department: string | IDepartment;
1088
1088
  proxy_user: string | IUser;
1089
- proxy_settings: Array<IProxySetting> | Array<string>;
1090
1089
  proxy_tracker: IProxyTracking | string;
1091
1090
  }
1092
1091
 
@@ -1275,6 +1274,20 @@ interface IAccountAIImage extends BoInterfaceModelsCommon$1.IBaseModel, BoInterf
1275
1274
  }>;
1276
1275
  }
1277
1276
 
1277
+ interface IProxySetting extends BoInterfaceModelsCommon.IBaseModel, BoInterfaceModelsCommon.ISoftDeleteModel<IUser>, BoInterfaceModelsCommon.ITrackingModel<IUser> {
1278
+ ps_proxy: IProxy | string;
1279
+ ps_typeSocial: ETypeSocial;
1280
+ ps_maximumAccountApply: number;
1281
+ ps_isFulled: boolean;
1282
+ }
1283
+
1284
+ interface IProxySettingForAccount extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
1285
+ proxy: IProxy | string;
1286
+ proxySetting: IProxySetting | string;
1287
+ typeSocial: AutoEnums.Types.ETypeSocial;
1288
+ accountSocial: IAccount | string;
1289
+ }
1290
+
1278
1291
  interface IAccountVPSGroup extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
1279
1292
  name: string;
1280
1293
  slug: string;
@@ -1468,6 +1481,7 @@ type index$5_IManagerSheetGroup = IManagerSheetGroup;
1468
1481
  type index$5_IPC = IPC;
1469
1482
  type index$5_IProxy = IProxy;
1470
1483
  type index$5_IProxySetting = IProxySetting;
1484
+ type index$5_IProxySettingForAccount = IProxySettingForAccount;
1471
1485
  type index$5_IProxyTracking = IProxyTracking;
1472
1486
  type index$5_ISheetsTool = ISheetsTool;
1473
1487
  type index$5_ITaskAI = ITaskAI;
@@ -1480,7 +1494,7 @@ type index$5_IVoiceLanguage = IVoiceLanguage;
1480
1494
  type index$5_IVoiceSettingDelay = IVoiceSettingDelay;
1481
1495
  type index$5_IVoiceStores = IVoiceStores;
1482
1496
  declare namespace index$5 {
1483
- export type { index$5_IAccount as IAccount, index$5_IAccountAI as IAccountAI, index$5_IAccountAIChannel as IAccountAIChannel, index$5_IAccountAIGroup as IAccountAIGroup, index$5_IAccountAIImage as IAccountAIImage, index$5_IAccountAIImageChannel as IAccountAIImageChannel, index$5_IAccountAIImageGroup as IAccountAIImageGroup, index$5_IAccountAIImageInfo as IAccountAIImageInfo, index$5_IAccountAIImageTag as IAccountAIImageTag, index$5_IAccountAIInfo as IAccountAIInfo, index$5_IAccountAITag as IAccountAITag, index$5_IAccountAIVoice as IAccountAIVoice, index$5_IAccountAIVoiceChannel as IAccountAIVoiceChannel, index$5_IAccountAIVoiceGroup as IAccountAIVoiceGroup, index$5_IAccountAIVoiceInfo as IAccountAIVoiceInfo, index$5_IAccountAIVoiceTag as IAccountAIVoiceTag, index$5_IAccountDetailEmail as IAccountDetailEmail, index$5_IAccountDetailSocial as IAccountDetailSocial, index$5_IAccountEmail as IAccountEmail, index$5_IAccountEmailProxy as IAccountEmailProxy, index$5_IAccountEmailTag as IAccountEmailTag, index$5_IAccountEmailTaskWork as IAccountEmailTaskWork, index$5_IAccountHistory as IAccountHistory, index$5_IAccountVPS as IAccountVPS, index$5_IAccountVPSGroup as IAccountVPSGroup, index$5_IAccountsGroup as IAccountsGroup, index$5_IDevice as IDevice, index$5_IDeviceAllowPermission as IDeviceAllowPermission, index$5_IDeviceInfoEmail as IDeviceInfoEmail, index$5_IDeviceSetting as IDeviceSetting, index$5_IDeviceSettingForAccount as IDeviceSettingForAccount, index$5_IManagerImageAI as IManagerImageAI, index$5_IManagerImageAIItemStore as IManagerImageAIItemStore, index$5_IManagerImageAIUserAttached as IManagerImageAIUserAttached, index$5_IManagerSheet as IManagerSheet, index$5_IManagerSheetChildren as IManagerSheetChildren, index$5_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$5_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$5_IManagerSheetGroup as IManagerSheetGroup, index$5_IPC as IPC, index$5_IProxy as IProxy, index$5_IProxySetting as IProxySetting, index$5_IProxyTracking as IProxyTracking, index$5_ISheetsTool as ISheetsTool, index$5_ITaskAI as ITaskAI, index$5_ITaskAIImageVoice as ITaskAIImageVoice, index$5_ITaskAIItemAction as ITaskAIItemAction, index$5_ITaskAIItemGroup as ITaskAIItemGroup, index$5_ITaskTool as ITaskTool, index$5_IVoiceGenerated as IVoiceGenerated, index$5_IVoiceLanguage as IVoiceLanguage, index$5_IVoiceSettingDelay as IVoiceSettingDelay, index$5_IVoiceStores as IVoiceStores };
1497
+ export type { index$5_IAccount as IAccount, index$5_IAccountAI as IAccountAI, index$5_IAccountAIChannel as IAccountAIChannel, index$5_IAccountAIGroup as IAccountAIGroup, index$5_IAccountAIImage as IAccountAIImage, index$5_IAccountAIImageChannel as IAccountAIImageChannel, index$5_IAccountAIImageGroup as IAccountAIImageGroup, index$5_IAccountAIImageInfo as IAccountAIImageInfo, index$5_IAccountAIImageTag as IAccountAIImageTag, index$5_IAccountAIInfo as IAccountAIInfo, index$5_IAccountAITag as IAccountAITag, index$5_IAccountAIVoice as IAccountAIVoice, index$5_IAccountAIVoiceChannel as IAccountAIVoiceChannel, index$5_IAccountAIVoiceGroup as IAccountAIVoiceGroup, index$5_IAccountAIVoiceInfo as IAccountAIVoiceInfo, index$5_IAccountAIVoiceTag as IAccountAIVoiceTag, index$5_IAccountDetailEmail as IAccountDetailEmail, index$5_IAccountDetailSocial as IAccountDetailSocial, index$5_IAccountEmail as IAccountEmail, index$5_IAccountEmailProxy as IAccountEmailProxy, index$5_IAccountEmailTag as IAccountEmailTag, index$5_IAccountEmailTaskWork as IAccountEmailTaskWork, index$5_IAccountHistory as IAccountHistory, index$5_IAccountVPS as IAccountVPS, index$5_IAccountVPSGroup as IAccountVPSGroup, index$5_IAccountsGroup as IAccountsGroup, index$5_IDevice as IDevice, index$5_IDeviceAllowPermission as IDeviceAllowPermission, index$5_IDeviceInfoEmail as IDeviceInfoEmail, index$5_IDeviceSetting as IDeviceSetting, index$5_IDeviceSettingForAccount as IDeviceSettingForAccount, index$5_IManagerImageAI as IManagerImageAI, index$5_IManagerImageAIItemStore as IManagerImageAIItemStore, index$5_IManagerImageAIUserAttached as IManagerImageAIUserAttached, index$5_IManagerSheet as IManagerSheet, index$5_IManagerSheetChildren as IManagerSheetChildren, index$5_IManagerSheetChildrenGroup as IManagerSheetChildrenGroup, index$5_IManagerSheetChildrenGroupItem as IManagerSheetChildrenGroupItem, index$5_IManagerSheetGroup as IManagerSheetGroup, index$5_IPC as IPC, index$5_IProxy as IProxy, index$5_IProxySetting as IProxySetting, index$5_IProxySettingForAccount as IProxySettingForAccount, index$5_IProxyTracking as IProxyTracking, index$5_ISheetsTool as ISheetsTool, index$5_ITaskAI as ITaskAI, index$5_ITaskAIImageVoice as ITaskAIImageVoice, index$5_ITaskAIItemAction as ITaskAIItemAction, index$5_ITaskAIItemGroup as ITaskAIItemGroup, index$5_ITaskTool as ITaskTool, index$5_IVoiceGenerated as IVoiceGenerated, index$5_IVoiceLanguage as IVoiceLanguage, index$5_IVoiceSettingDelay as IVoiceSettingDelay, index$5_IVoiceStores as IVoiceStores };
1484
1498
  }
1485
1499
 
1486
1500
  interface ILogTaskAIImageVoice extends BoInterfaceModelsCommon$1.IBaseModel, BoInterfaceModelsCommon$1.ITrackingModel<IUser> {
package/dist/index.js CHANGED
@@ -299,6 +299,7 @@ __export(types_exports, {
299
299
  ETypeManagerWorkPin: () => ETypeManagerWorkPin,
300
300
  ETypeManagerWorkType: () => ETypeManagerWorkType,
301
301
  ETypeNotification: () => ETypeNotification,
302
+ ETypeProxy: () => ETypeProxy,
302
303
  ETypeRatioImage: () => ETypeRatioImage,
303
304
  ETypeSheetWorkClassify: () => ETypeSheetWorkClassify,
304
305
  ETypeSheetWorkPin: () => ETypeSheetWorkPin,
@@ -379,6 +380,13 @@ var ETypeCanva = /* @__PURE__ */ ((ETypeCanva2) => {
379
380
  return ETypeCanva2;
380
381
  })(ETypeCanva || {});
381
382
 
383
+ // src/enums/types/ETypeProxy.enum.ts
384
+ var ETypeProxy = /* @__PURE__ */ ((ETypeProxy2) => {
385
+ ETypeProxy2["HTTP"] = "HTTP";
386
+ ETypeProxy2["SOCKS5"] = "SOCKS5";
387
+ return ETypeProxy2;
388
+ })(ETypeProxy || {});
389
+
382
390
  // src/enums/types/ETypeRatioImage.enum.ts
383
391
  var ETypeRatioImage = /* @__PURE__ */ ((ETypeRatioImage2) => {
384
392
  ETypeRatioImage2["Square"] = "Square";
package/dist/index.mjs CHANGED
@@ -276,6 +276,7 @@ __export(types_exports, {
276
276
  ETypeManagerWorkPin: () => ETypeManagerWorkPin,
277
277
  ETypeManagerWorkType: () => ETypeManagerWorkType,
278
278
  ETypeNotification: () => ETypeNotification,
279
+ ETypeProxy: () => ETypeProxy,
279
280
  ETypeRatioImage: () => ETypeRatioImage,
280
281
  ETypeSheetWorkClassify: () => ETypeSheetWorkClassify,
281
282
  ETypeSheetWorkPin: () => ETypeSheetWorkPin,
@@ -356,6 +357,13 @@ var ETypeCanva = /* @__PURE__ */ ((ETypeCanva2) => {
356
357
  return ETypeCanva2;
357
358
  })(ETypeCanva || {});
358
359
 
360
+ // src/enums/types/ETypeProxy.enum.ts
361
+ var ETypeProxy = /* @__PURE__ */ ((ETypeProxy2) => {
362
+ ETypeProxy2["HTTP"] = "HTTP";
363
+ ETypeProxy2["SOCKS5"] = "SOCKS5";
364
+ return ETypeProxy2;
365
+ })(ETypeProxy || {});
366
+
359
367
  // src/enums/types/ETypeRatioImage.enum.ts
360
368
  var ETypeRatioImage = /* @__PURE__ */ ((ETypeRatioImage2) => {
361
369
  ETypeRatioImage2["Square"] = "Square";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "4.9.118",
3
+ "version": "4.9.120",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",